1234567891011121314151617181920212223 |
- import Vue from 'vue'
- import App from './App.vue'
- import '@/mixins'
- import router from './router'
- import {axios, serverLocation} from './utils/http'
- Vue.config.productionTip = false
- Vue.prototype.$http = axios
- Vue.prototype.$serverName = serverLocation
- Vue.prototype.$type = {
- model:'实物模型',
- img:'专题图库',
- video:'视频档案'
- }
- new Vue({
- router,
- render: h => h(App)
- }).$mount('#app')
|