App.vue
globalData:{ infoType:'' }, methods:{ watch:function(method,istr){ var obj=this.globalData console.log(obj) Object.defineProperty(obj,istr,{ configurable:true, enumerable:true, set:function(value){ this._consumerGoodsStatus=value method(value) }, get:function(value){ return this._consumerGoodsStatus } }) } },
頁面調用
getApp().watch(this.getcartcount,'infoType')
getcartcount(val){ console.log('輸出變化的值',val) },