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