mirror of
https://gitee.com/newgateway/vtj.git
synced 2026-05-23 01:00:45 +08:00
8 lines
210 B
TypeScript
8 lines
210 B
TypeScript
import { createApp } from 'vue';
|
|
import App from '@/views/designer/app.vue';
|
|
import router from '@/router/designer';
|
|
import '@/style/index.scss';
|
|
const app = createApp(App);
|
|
app.use(router);
|
|
app.mount('#app');
|