web-map/src/main.ts

14 lines
319 B
TypeScript
Raw Normal View History

2025-04-20 00:49:14 +08:00
import './style.scss';
import { i18n } from '@core/locale.service';
import { router } from '@core/router';
import { createPinia } from 'pinia';
2025-04-20 00:49:14 +08:00
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');