mirror of
https://gitee.com/newgateway/vtj.git
synced 2026-05-15 01:48:00 +08:00
12 lines
266 B
TypeScript
12 lines
266 B
TypeScript
import { createApp } from 'vue';
|
|
import router from './router/index';
|
|
import App from './App.vue';
|
|
import 'element-plus/dist/index.css';
|
|
// import * as VX from '../src/library/index';
|
|
const app = createApp(App);
|
|
|
|
app.use(router);
|
|
app.mount('#app');
|
|
|
|
export { app };
|