mirror of
https://gitee.com/newgateway/vtj.git
synced 2026-05-22 07:58:28 +08:00
13 lines
276 B
TypeScript
13 lines
276 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(VX);
|
|
app.use(router);
|
|
app.mount('#app');
|
|
|
|
export { app };
|