parent
27b5c71944
commit
7cbf684611
@ -20,7 +20,7 @@ describe('component props', () => {
|
|||||||
let proxy: any
|
let proxy: any
|
||||||
|
|
||||||
const Comp = defineComponent({
|
const Comp = defineComponent({
|
||||||
props: ['foo'],
|
props: ['fooBar'],
|
||||||
render() {
|
render() {
|
||||||
props = this.$props
|
props = this.$props
|
||||||
attrs = this.$attrs
|
attrs = this.$attrs
|
||||||
@ -29,18 +29,25 @@ describe('component props', () => {
|
|||||||
})
|
})
|
||||||
|
|
||||||
const root = nodeOps.createElement('div')
|
const root = nodeOps.createElement('div')
|
||||||
render(h(Comp, { foo: 1, bar: 2 }), root)
|
render(h(Comp, { fooBar: 1, bar: 2 }), root)
|
||||||
expect(proxy.foo).toBe(1)
|
expect(proxy.fooBar).toBe(1)
|
||||||
expect(props).toEqual({ foo: 1 })
|
expect(props).toEqual({ fooBar: 1 })
|
||||||
expect(attrs).toEqual({ bar: 2 })
|
expect(attrs).toEqual({ bar: 2 })
|
||||||
|
|
||||||
render(h(Comp, { foo: 2, bar: 3, baz: 4 }), root)
|
// test passing kebab-case and resolving to camelCase
|
||||||
expect(proxy.foo).toBe(2)
|
render(h(Comp, { 'foo-bar': 2, bar: 3, baz: 4 }), root)
|
||||||
expect(props).toEqual({ foo: 2 })
|
expect(proxy.fooBar).toBe(2)
|
||||||
|
expect(props).toEqual({ fooBar: 2 })
|
||||||
|
expect(attrs).toEqual({ bar: 3, baz: 4 })
|
||||||
|
|
||||||
|
// test updating kebab-case should not delete it (#955)
|
||||||
|
render(h(Comp, { 'foo-bar': 3, bar: 3, baz: 4 }), root)
|
||||||
|
expect(proxy.fooBar).toBe(3)
|
||||||
|
expect(props).toEqual({ fooBar: 3 })
|
||||||
expect(attrs).toEqual({ bar: 3, baz: 4 })
|
expect(attrs).toEqual({ bar: 3, baz: 4 })
|
||||||
|
|
||||||
render(h(Comp, { qux: 5 }), root)
|
render(h(Comp, { qux: 5 }), root)
|
||||||
expect(proxy.foo).toBeUndefined()
|
expect(proxy.fooBar).toBeUndefined()
|
||||||
expect(props).toEqual({})
|
expect(props).toEqual({})
|
||||||
expect(attrs).toEqual({ qux: 5 })
|
expect(attrs).toEqual({ qux: 5 })
|
||||||
})
|
})
|
||||||
|
@ -177,8 +177,15 @@ export function updateProps(
|
|||||||
setFullProps(instance, rawProps, props, attrs)
|
setFullProps(instance, rawProps, props, attrs)
|
||||||
// in case of dynamic props, check if we need to delete keys from
|
// in case of dynamic props, check if we need to delete keys from
|
||||||
// the props object
|
// the props object
|
||||||
|
let kebabKey: string
|
||||||
for (const key in rawCurrentProps) {
|
for (const key in rawCurrentProps) {
|
||||||
if (!rawProps || !hasOwn(rawProps, key)) {
|
if (
|
||||||
|
!rawProps ||
|
||||||
|
(!hasOwn(rawProps, key) &&
|
||||||
|
// it's possible the original props was passed in as kebab-case
|
||||||
|
// and converted to camelCase (#955)
|
||||||
|
((kebabKey = hyphenate(key)) === key || !hasOwn(rawProps, kebabKey)))
|
||||||
|
) {
|
||||||
delete props[key]
|
delete props[key]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user