mirror of https://gitee.com/pnoker/dc3-web.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
361 B
18 lines
361 B
import Vue from 'vue'
|
|
import axios from './config/axios'
|
|
import VueAxios from 'vue-axios'
|
|
import App from './App'
|
|
import router from './router/router'
|
|
import store from './store/store'
|
|
import './plugins/element/element.js'
|
|
|
|
Vue.use(VueAxios, axios);
|
|
|
|
Vue.config.productionTip = false;
|
|
|
|
new Vue({
|
|
router,
|
|
store,
|
|
render: h => h(App)
|
|
}).$mount('#app')
|