比如,我切换图片时,触发以下method: setActiveImage(image) { for (const imageItem of this.imageList) { imageItem.active = false; } image.active = true; // 此处修改了watch的值 this.test = "xxx"; } 这里自动切换到当前图片对象 computed: { activeImage() { return this.imageList.find((image) => { return image.active; }); }, } 最后在watch时使用到了computed后的对象,但是computed是在watch之后执行的,activeImage数据就不对,有没有什么办法解决? watch: { "test": { handler() { // 这里使用到了computed后的对象,这里的数据不正确 this.dosomething(this.activeImage); }, deep: true } }