import { createApp } from 'vue' import { createPinia } from 'pinia' import App from './App.vue' import router from './router' import { useAuthStore } from './stores/auth' import './index.css' import './styles/common.css' const app = createApp(App) const pinia = createPinia() app.use(pinia) useAuthStore().restoreAuth() app.use(router) app.mount('#app')