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.

19 lines
379 B
JavaScript

2 years ago
import Vue from 'vue'
import App from './App.vue'
2 years ago
import router from "@/router";
import ElementUI from 'element-ui';
import 'element-ui/lib/theme-chalk/index.css';
2 years ago
Vue.config.productionTip = false
2 years ago
Vue.use(ElementUI)
// 配置axios完成ajax请求
import axios from 'axios'
Vue.prototype.$axios = axios;
2 years ago
new Vue({
2 years ago
router: router,
2 years ago
render: h => h(App),
}).$mount('#app')