fix(runtime-core): set appContext.provides to Object.create(null) (#781)
This commit is contained in:
@@ -79,6 +79,9 @@ describe('api: createApp', () => {
|
||||
setup() {
|
||||
const foo = inject('foo')
|
||||
const bar = inject('bar')
|
||||
try {
|
||||
inject('__proto__')
|
||||
} catch (e) {}
|
||||
return () => `${foo},${bar}`
|
||||
}
|
||||
}
|
||||
@@ -90,6 +93,7 @@ describe('api: createApp', () => {
|
||||
const root = nodeOps.createElement('div')
|
||||
app.mount(root)
|
||||
expect(serializeInner(root)).toBe(`3,2`)
|
||||
expect('[Vue warn]: injection "__proto__" not found.').toHaveBeenWarned()
|
||||
})
|
||||
|
||||
test('component', () => {
|
||||
|
||||
Reference in New Issue
Block a user