chore: update
All checks were successful
Deploy Application / deploy (push) Successful in 5s

This commit is contained in:
2025-06-12 21:30:21 +04:00
parent 5babc5db35
commit 42235420b9
15 changed files with 192 additions and 39 deletions

View File

@ -1,5 +1,12 @@
import { createApp } from 'vue'
import { createPinia } from 'pinia'
import './style.css'
import App from './App.vue'
import router from '@/config/router/index'
createApp(App).mount('#app')
const app = createApp(App)
app.use(createPinia())
app.use(router)
app.mount('#app')