vue2 获取不到 Vue.prototype.$abc 的一种情况
在 index.vue中的赋值应改为 Vue.prototype.$abc = {.....}然后又在index.vue中this.$abc = {.........}这样在其他地方使用this.$abc 获取到的依然是{}
·
在main.js中
Vue.prototype.$abc = {}
然后又在index.vue中 this.$abc = {.........}
这样在其他地方使用 this.$abc 获取到的依然是{}
在 index.vue中的赋值应改为 Vue.prototype.$abc = {.....}
更多推荐
已为社区贡献2条内容
所有评论(0)