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
const obj = shallowReadonly({ foo: { bar: 1 } }) effect(() => { console.log(obj.foo.bar) }) obj.foo.bar = 2 // 浅只读却不触发副作用函数
这里期望的副作用函数应该会执行啊,实际上并没有执行
vue 官网描述,也是可以通过的
The text was updated successfully, but these errors were encountered:
No branches or pull requests
这里期望的副作用函数应该会执行啊,实际上并没有执行
vue 官网描述,也是可以通过的
The text was updated successfully, but these errors were encountered: