beelink/src/main.ts

10 lines
272 B
TypeScript
Raw Normal View History

2020-09-24 10:26:22 +08:00
import { createApp } from 'vue'
import App from './App.vue'
2020-09-24 11:12:18 +08:00
import Antd from 'ant-design-vue';
2020-09-24 10:26:22 +08:00
import router from './router'
import store from './store'
2020-09-24 11:12:18 +08:00
import 'ant-design-vue/dist/antd.css';
2020-09-24 10:26:22 +08:00
2020-09-24 15:33:12 +08:00
const app = createApp(App);
app.use(store).use(router).use(Antd).mount('#app')