You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: test/unit/modules/compiler/codegen.spec.js
+7-7
Original file line number
Diff line number
Diff line change
@@ -243,17 +243,17 @@ describe('codegen', () => {
243
243
it('generate events with keycode',()=>{
244
244
assertCodegen(
245
245
'<input @input.enter="onInput">',
246
-
`with(this){return _c('input',{on:{"input":function($event){if(!('button' in $event)&&_k($event.keyCode,"enter",13))return null;onInput($event)}}})}`
246
+
`with(this){return _c('input',{on:{"input":function($event){if(!('button' in $event)&&_k($event.keyCode,"enter",13,$event.key))return null;onInput($event)}}})}`
247
247
)
248
248
// multiple keycodes (delete)
249
249
assertCodegen(
250
250
'<input @input.delete="onInput">',
251
-
`with(this){return _c('input',{on:{"input":function($event){if(!('button' in $event)&&_k($event.keyCode,"delete",[8,46]))return null;onInput($event)}}})}`
251
+
`with(this){return _c('input',{on:{"input":function($event){if(!('button' in $event)&&_k($event.keyCode,"delete",[8,46],$event.key))return null;onInput($event)}}})}`
252
252
)
253
253
// multiple keycodes (chained)
254
254
assertCodegen(
255
255
'<input @keydown.enter.delete="onInput">',
256
-
`with(this){return _c('input',{on:{"keydown":function($event){if(!('button' in $event)&&_k($event.keyCode,"enter",13)&&_k($event.keyCode,"delete",[8,46]))return null;onInput($event)}}})}`
256
+
`with(this){return _c('input',{on:{"keydown":function($event){if(!('button' in $event)&&_k($event.keyCode,"enter",13,$event.key)&&_k($event.keyCode,"delete",[8,46],$event.key))return null;onInput($event)}}})}`
257
257
)
258
258
// number keycode
259
259
assertCodegen(
@@ -263,7 +263,7 @@ describe('codegen', () => {
263
263
// custom keycode
264
264
assertCodegen(
265
265
'<input @input.custom="onInput">',
266
-
`with(this){return _c('input',{on:{"input":function($event){if(!('button' in $event)&&_k($event.keyCode,"custom"))return null;onInput($event)}}})}`
266
+
`with(this){return _c('input',{on:{"input":function($event){if(!('button' in $event)&&_k($event.keyCode,"custom",undefined,$event.key))return null;onInput($event)}}})}`
267
267
)
268
268
})
269
269
@@ -286,12 +286,12 @@ describe('codegen', () => {
286
286
it('generate events with generic modifiers and keycode correct order',()=>{
287
287
assertCodegen(
288
288
'<input @keydown.enter.prevent="onInput">',
289
-
`with(this){return _c('input',{on:{"keydown":function($event){if(!('button' in $event)&&_k($event.keyCode,"enter",13))return null;$event.preventDefault();onInput($event)}}})}`
289
+
`with(this){return _c('input',{on:{"keydown":function($event){if(!('button' in $event)&&_k($event.keyCode,"enter",13,$event.key))return null;$event.preventDefault();onInput($event)}}})}`
290
290
)
291
291
292
292
assertCodegen(
293
293
'<input @keydown.enter.stop="onInput">',
294
-
`with(this){return _c('input',{on:{"keydown":function($event){if(!('button' in $event)&&_k($event.keyCode,"enter",13))return null;$event.stopPropagation();onInput($event)}}})}`
294
+
`with(this){return _c('input',{on:{"keydown":function($event){if(!('button' in $event)&&_k($event.keyCode,"enter",13,$event.key))return null;$event.stopPropagation();onInput($event)}}})}`
295
295
)
296
296
})
297
297
@@ -398,7 +398,7 @@ describe('codegen', () => {
398
398
// with modifiers
399
399
assertCodegen(
400
400
`<input @keyup.enter="e=>current++">`,
401
-
`with(this){return _c('input',{on:{"keyup":function($event){if(!('button' in $event)&&_k($event.keyCode,"enter",13))return null;(e=>current++)($event)}}})}`
401
+
`with(this){return _c('input',{on:{"keyup":function($event){if(!('button' in $event)&&_k($event.keyCode,"enter",13,$event.key))return null;(e=>current++)($event)}}})}`
0 commit comments