Skip to content

Commit 7b38739

Browse files
dchermanyyx990803
authored andcommitted
fix: correct the has implementation in the _renderProxy (#7878)
It's feasible that someone might ask if something other than a string is in the proxy such as a `Symbol` that lacks a `charAt` method. This aligns the implementation with the `getHandler`.
1 parent 17d7a5f commit 7b38739

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

src/core/instance/proxy.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ if (process.env.NODE_ENV !== 'production') {
4545
const hasHandler = {
4646
has (target, key) {
4747
const has = key in target
48-
const isAllowed = allowedGlobals(key) || key.charAt(0) === '_'
48+
const isAllowed = allowedGlobals(key) || (typeof key === 'string' && key.charAt(0) === '_')
4949
if (!has && !isAllowed) {
5050
warnNonPresent(target, key)
5151
}

test/unit/features/instance/render-proxy.spec.js

+17
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,22 @@ if (typeof Proxy !== 'undefined') {
2828
}).$mount()
2929
expect(`Property or method "a" is not defined`).not.toHaveBeenWarned()
3030
})
31+
32+
it('support symbols using the `in` operator in hand-written render functions', () => {
33+
const sym = Symbol()
34+
35+
const vm = new Vue({
36+
created () {
37+
this[sym] = 'foo'
38+
},
39+
render (h) {
40+
if (sym in this) {
41+
return h('div', [this[sym]])
42+
}
43+
}
44+
}).$mount()
45+
46+
expect(vm.$el.textContent).toBe('foo')
47+
})
3148
})
3249
}

0 commit comments

Comments
 (0)