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
@@ -265,17 +265,17 @@ describe('codegen', () => {
265
265
it('generate events with keycode',()=>{
266
266
assertCodegen(
267
267
'<input @input.enter="onInput">',
268
-
`with(this){return _c('input',{on:{"input":function($event){if(!('button' in $event)&&_k($event.keyCode,"enter",13,$event.key))return null;onInput($event)}}})}`
268
+
`with(this){return _c('input',{on:{"input":function($event){if(!('button' in $event)&&_k($event.keyCode,"enter",13,$event.key,"Enter"))return null;onInput($event)}}})}`
269
269
)
270
270
// multiple keycodes (delete)
271
271
assertCodegen(
272
272
'<input @input.delete="onInput">',
273
-
`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)}}})}`
273
+
`with(this){return _c('input',{on:{"input":function($event){if(!('button' in $event)&&_k($event.keyCode,"delete",[8,46],$event.key,["Backspace","Delete"]))return null;onInput($event)}}})}`
274
274
)
275
275
// multiple keycodes (chained)
276
276
assertCodegen(
277
277
'<input @keydown.enter.delete="onInput">',
278
-
`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)}}})}`
278
+
`with(this){return _c('input',{on:{"keydown":function($event){if(!('button' in $event)&&_k($event.keyCode,"enter",13,$event.key,"Enter")&&_k($event.keyCode,"delete",[8,46],$event.key,["Backspace","Delete"]))return null;onInput($event)}}})}`
279
279
)
280
280
// number keycode
281
281
assertCodegen(
@@ -285,7 +285,7 @@ describe('codegen', () => {
285
285
// custom keycode
286
286
assertCodegen(
287
287
'<input @input.custom="onInput">',
288
-
`with(this){return _c('input',{on:{"input":function($event){if(!('button' in $event)&&_k($event.keyCode,"custom",undefined,$event.key))return null;onInput($event)}}})}`
288
+
`with(this){return _c('input',{on:{"input":function($event){if(!('button' in $event)&&_k($event.keyCode,"custom",undefined,$event.key,undefined))return null;onInput($event)}}})}`
289
289
)
290
290
})
291
291
@@ -308,12 +308,12 @@ describe('codegen', () => {
308
308
it('generate events with generic modifiers and keycode correct order',()=>{
309
309
assertCodegen(
310
310
'<input @keydown.enter.prevent="onInput">',
311
-
`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)}}})}`
311
+
`with(this){return _c('input',{on:{"keydown":function($event){if(!('button' in $event)&&_k($event.keyCode,"enter",13,$event.key,"Enter"))return null;$event.preventDefault();onInput($event)}}})}`
312
312
)
313
313
314
314
assertCodegen(
315
315
'<input @keydown.enter.stop="onInput">',
316
-
`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)}}})}`
316
+
`with(this){return _c('input',{on:{"keydown":function($event){if(!('button' in $event)&&_k($event.keyCode,"enter",13,$event.key,"Enter"))return null;$event.stopPropagation();onInput($event)}}})}`
317
317
)
318
318
})
319
319
@@ -420,7 +420,7 @@ describe('codegen', () => {
420
420
// with modifiers
421
421
assertCodegen(
422
422
`<input @keyup.enter="e=>current++">`,
423
-
`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)}}})}`
423
+
`with(this){return _c('input',{on:{"keyup":function($event){if(!('button' in $event)&&_k($event.keyCode,"enter",13,$event.key,"Enter"))return null;(e=>current++)($event)}}})}`
0 commit comments