在入口文件中定义vue属性值:
let a = {
b:'bbb',
c:'ccc'
}
Vue.prototype.$http = axios;
Vue.prototype.$host = '/';
Vue.prototype.$moment = moment;
Vue.prototype.$a = a;
在任何组件中引用:
this.$host...
this.$http.post...
在入口文件中定义vue属性值:
let a = {
b:'bbb',
c:'ccc'
}
Vue.prototype.$http = axios;
Vue.prototype.$host = '/';
Vue.prototype.$moment = moment;
Vue.prototype.$a = a;
在任何组件中引用:
this.$host...
this.$http.post...