17 lines
330 B
TypeScript
17 lines
330 B
TypeScript
import { createApp } from 'vue'
|
|
import { createPinia } from 'pinia'
|
|
import { createHead } from '@vueuse/head'
|
|
|
|
import './style.css'
|
|
import App from './App.vue'
|
|
import router from '@/config/router/index'
|
|
|
|
const app = createApp(App)
|
|
const head = createHead()
|
|
|
|
app.use(head)
|
|
app.use(createPinia())
|
|
app.use(router)
|
|
|
|
app.mount('#app')
|