mirror of
https://github.com/cuigh/swirl
synced 2025-01-02 17:16:37 +00:00
9 lines
243 B
TypeScript
9 lines
243 B
TypeScript
|
import { createApp } from 'vue'
|
||
|
import App from './App.vue'
|
||
|
import { router } from './router/router'
|
||
|
import { store } from './store'
|
||
|
import i18n from './locales'
|
||
|
|
||
|
const app = createApp(App).use(router).use(store).use(i18n);
|
||
|
app.mount('#app');
|