mirror of
https://gitee.com/newgateway/vtj.git
synced 2026-07-02 00:17:19 +08:00
8 lines
190 B
TypeScript
8 lines
190 B
TypeScript
import { createApp } from 'vue';
|
|
import Designer from './app.vue';
|
|
import router from './router';
|
|
import './style.scss';
|
|
const app = createApp(Designer);
|
|
app.use(router);
|
|
app.mount('#app');
|