123456789101112131415161718192021222324 |
- import Vue from 'vue'
- import App from './App.vue'
- import router from './router'
- import ElementUI from 'element-ui';
- import 'element-ui/lib/theme-chalk/index.css';
- //引入初始化样式
- import './assets/css/base.css'
- Vue.use(ElementUI);
- // Vue.mixin({
- // })
- // 不能通过location去判断
- Vue.prototype.$homePageUrl = 'http://192.168.0.81:8081/main'
- Vue.prototype.$eventBus = new Vue({})
- Vue.config.productionTip = false
- new Vue({
- router,
- render: h => h(App)
- }).$mount('#app')
|