chore(reactivity): use consistent naming for ReactiveFlags enum (#1428)

This commit is contained in:
edison
2020-06-26 21:32:09 +08:00
committed by GitHub
parent e765d81404
commit 178e89305d
4 changed files with 34 additions and 34 deletions

View File

@@ -212,7 +212,7 @@ export const PublicInstanceProxyHandlers: ProxyHandler<any> = {
} = instance
// let @vue/reatvitiy know it should never observe Vue public instances.
if (key === ReactiveFlags.skip) {
if (key === ReactiveFlags.SKIP) {
return true
}