mirror of
https://github.com/0O0o0oOoO00/Alas.git
synced 2026-05-16 11:49:28 +08:00
8 lines
142 B
TypeScript
8 lines
142 B
TypeScript
import {createApp} from 'vue';
|
|
import App from '/@/App.vue';
|
|
import router from '/@/router';
|
|
|
|
createApp(App)
|
|
.use(router)
|
|
.mount('#app');
|