fix(runtime-core): check if the key is string on undefined property warning (#1731)
This commit is contained in:
parent
848d9ce2ea
commit
ce78eac8e9
@ -217,4 +217,24 @@ describe('component: proxy', () => {
|
|||||||
`was accessed during render but is not defined`
|
`was accessed during render but is not defined`
|
||||||
).not.toHaveBeenWarned()
|
).not.toHaveBeenWarned()
|
||||||
})
|
})
|
||||||
|
|
||||||
|
test('should allow symbol to access on render', () => {
|
||||||
|
const Comp = {
|
||||||
|
render() {
|
||||||
|
if ((this as any)[Symbol.unscopables]) {
|
||||||
|
return '1'
|
||||||
|
}
|
||||||
|
return '2'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const app = createApp(Comp)
|
||||||
|
app.mount(nodeOps.createElement('div'))
|
||||||
|
|
||||||
|
expect(
|
||||||
|
`Property ${JSON.stringify(
|
||||||
|
Symbol.unscopables
|
||||||
|
)} was accessed during render ` + `but is not defined on instance.`
|
||||||
|
).toHaveBeenWarned()
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
@ -6,7 +6,8 @@ import {
|
|||||||
hasOwn,
|
hasOwn,
|
||||||
isGloballyWhitelisted,
|
isGloballyWhitelisted,
|
||||||
NOOP,
|
NOOP,
|
||||||
extend
|
extend,
|
||||||
|
isString
|
||||||
} from '@vue/shared'
|
} from '@vue/shared'
|
||||||
import {
|
import {
|
||||||
ReactiveEffect,
|
ReactiveEffect,
|
||||||
@ -286,9 +287,10 @@ export const PublicInstanceProxyHandlers: ProxyHandler<any> = {
|
|||||||
} else if (
|
} else if (
|
||||||
__DEV__ &&
|
__DEV__ &&
|
||||||
currentRenderingInstance &&
|
currentRenderingInstance &&
|
||||||
|
(!isString(key) ||
|
||||||
// #1091 avoid internal isRef/isVNode checks on component instance leading
|
// #1091 avoid internal isRef/isVNode checks on component instance leading
|
||||||
// to infinite warning loop
|
// to infinite warning loop
|
||||||
key.indexOf('__v') !== 0
|
key.indexOf('__v') !== 0)
|
||||||
) {
|
) {
|
||||||
if (data !== EMPTY_OBJ && key[0] === '$' && hasOwn(data, key)) {
|
if (data !== EMPTY_OBJ && key[0] === '$' && hasOwn(data, key)) {
|
||||||
warn(
|
warn(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user