用watch配合computed解决了 watch:{ computedA:{ handler(val){ //一些处理 }, deep:true, immediate:true } }, computed:{ computedA(){ return this.x&&this.y&&this.z; } }
用watch配合computed解决了