15 lines
328 B
JavaScript
15 lines
328 B
JavaScript
import { createApp } from 'vue'
|
|
import { createPinia } from 'pinia'
|
|
import './style.css'
|
|
import App from './App.vue'
|
|
import router from './router'
|
|
import { useAuthStore } from '@/stores/auth'
|
|
|
|
const pinia = createPinia()
|
|
const app = createApp(App)
|
|
|
|
app.use(pinia)
|
|
useAuthStore(pinia).hydrate()
|
|
app.use(router)
|
|
app.mount('#app')
|