import { createApp } from 'vue'; import './style.scss'; import App from './App.vue'; import { createPinia } from 'pinia'; import router from './router'; const pinia = createPinia(); const app = createApp(App); app.use(pinia); app.use(router); app.mount('#app');