You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
447 B
JavaScript
14 lines
447 B
JavaScript
import { createApp } from 'vue/dist/vue.esm-bundler.js'
|
|
import Antd from 'ant-design-vue';
|
|
import App from './App.vue'
|
|
import 'ant-design-vue/dist/antd.css';
|
|
import UCore from './util/UCore.js'
|
|
import './assets/css/index.css';
|
|
import router from './router';
|
|
import axios from 'axios';
|
|
const app = createApp(App);
|
|
app.use(router);
|
|
app.config.globalProperties.$UCore = UCore;
|
|
app.config.globalProperties.$axios = axios;
|
|
app.use(Antd).mount('#app');
|