Skip to content

Commit 89f37ce

Browse files
committedNov 11, 2022
fix(custom-elements): fix number type props casting check
fix #5793 adapted from #5794
1 parent afe8899 commit 89f37ce

File tree

2 files changed

+26
-3
lines changed

2 files changed

+26
-3
lines changed
 

‎packages/runtime-dom/__tests__/customElement.spec.ts

+19
Original file line numberDiff line numberDiff line change
@@ -228,6 +228,25 @@ describe('defineCustomElement', () => {
228228
await nextTick()
229229
expect(el.shadowRoot!.innerHTML).toMatchInlineSnapshot('"<div>foo</div>"')
230230
})
231+
232+
// # 5793
233+
test('set number value in dom property', () => {
234+
const E = defineCustomElement({
235+
props: {
236+
'max-age': Number
237+
},
238+
render() {
239+
// @ts-ignore
240+
return `max age: ${this.maxAge}/type: ${typeof this.maxAge}`
241+
}
242+
})
243+
customElements.define('my-element-number-property', E)
244+
const el = document.createElement('my-element-number-property') as any
245+
container.appendChild(el)
246+
el.maxAge = 50
247+
expect(el.maxAge).toBe(50)
248+
expect(el.shadowRoot.innerHTML).toBe('max age: 50/type: number')
249+
})
231250
})
232251

233252
describe('attrs', () => {

‎packages/runtime-dom/src/apiCustomElement.ts

+7-3
Original file line numberDiff line numberDiff line change
@@ -234,11 +234,15 @@ export class VueElement extends BaseClass {
234234
// cast Number-type props set before resolve
235235
let numberProps
236236
if (props && !isArray(props)) {
237-
for (const key in this._props) {
237+
for (const key in props) {
238238
const opt = props[key]
239239
if (opt === Number || (opt && opt.type === Number)) {
240-
this._props[key] = toNumber(this._props[key])
241-
;(numberProps || (numberProps = Object.create(null)))[key] = true
240+
if (key in this._props) {
241+
this._props[key] = toNumber(this._props[key])
242+
}
243+
;(numberProps || (numberProps = Object.create(null)))[
244+
camelize(key)
245+
] = true
242246
}
243247
}
244248
}

0 commit comments

Comments
 (0)
Please sign in to comment.