We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://github.com/tuateam/tua-mp/blob/972a5925bbff2bb7ad7e057fc04b7c3b72ce1b26/packages/tua-mp/src/VmStatus.js#L106-L136
例如在 watch 中触发 setter,那么由于同步触发函数,同步清空状态,导致新的状态也被误清空了...
The text was updated successfully, but these errors were encountered:
可以通过在触发 watch 前提前清空状态来解决
const newStateByVM = this.newStateByVM const oldStateByVM = this.oldStateByVM this.newStateByVM = Object.create(null) this.oldStateByVM = Object.create(null)
Sorry, something went wrong.
fix: close #58, update npm deps, fix mock
edcaf43
878a403
BuptStEve
No branches or pull requests
https://github.com/tuateam/tua-mp/blob/972a5925bbff2bb7ad7e057fc04b7c3b72ce1b26/packages/tua-mp/src/VmStatus.js#L106-L136
例如在 watch 中触发 setter,那么由于同步触发函数,同步清空状态,导致新的状态也被误清空了...
The text was updated successfully, but these errors were encountered: