react 根本不需要 watch 吧,state 或者 props 的变更都会自动的引起视图的更新,而 computed 只是对 state、props 作用一个纯函数的临时运行结果。给你个例子感受一下:
// Vue
computed: {
doubleNum() {
return this.num * 2;
}
}
// React
const {num} = props; // 或者 const {num} = state;
const doubleNum = num * 2;
谢谢你愿意帮助我,还专门写代码帮助我,虽然我之前也懂怎么做了,不过还是谢谢你愿意帮助我哈
都用page state代替