full page
All checks were successful
Deploy Application / deploy (push) Successful in 8s

This commit is contained in:
2025-06-13 22:53:58 +04:00
parent f01c6ada17
commit 95167a6f8a
12 changed files with 351 additions and 15 deletions

View File

@ -1,11 +1,15 @@
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)