Files
ebook/src/main.ts
koziavin 95167a6f8a
All checks were successful
Deploy Application / deploy (push) Successful in 8s
full page
2025-06-13 22:53:58 +04:00

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')