import Vue from 'vue'
provide() {
// 给他变成响应式的;
this.popShow = Vue.observable({
popShow: 0
})
return {
popShow: this.popShow
}
},
// data里面的popShow也是响应式的;
data() {
return {
popShow: {
popShow: '1'
}
}
},
provide() {
return {
popShow: this.popShow
}
},