在main.js中
Vue.prototype.$abc = {}
然后又在index.vue中 this.$abc = {.........}
这样在其他地方使用 this.$abc 获取到的依然是{}
在 index.vue中的赋值应改为 Vue.prototype.$abc = {.....}
在main.js中
Vue.prototype.$abc = {}
然后又在index.vue中 this.$abc = {.........}
这样在其他地方使用 this.$abc 获取到的依然是{}
在 index.vue中的赋值应改为 Vue.prototype.$abc = {.....}