fix(runtime-core): properly capitalize v-on object keys (#1358)
This commit is contained in:
@@ -18,8 +18,8 @@ describe('toHandlers', () => {
|
||||
const change = () => {}
|
||||
|
||||
expect(toHandlers({ input, change })).toStrictEqual({
|
||||
oninput: input,
|
||||
onchange: change
|
||||
onInput: input,
|
||||
onChange: change
|
||||
})
|
||||
})
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user