@@ -363,37 +363,37 @@ describe('codegen', () => {
363
363
it ( 'generate events with keycode' , ( ) => {
364
364
assertCodegen (
365
365
'<input @input.enter="onInput">' ,
366
- `with(this){return _c('input',{on:{"input":function($event){if(('keyCode' in $event )&&_k($event.keyCode,"enter",13,$event.key,"Enter"))return null;return onInput($event)}}})}`
366
+ `with(this){return _c('input',{on:{"input":function($event){if(!$event.type.indexOf('key' )&&_k($event.keyCode,"enter",13,$event.key,"Enter"))return null;return onInput($event)}}})}`
367
367
)
368
368
// multiple keycodes (delete)
369
369
assertCodegen (
370
370
'<input @input.delete="onInput">' ,
371
- `with(this){return _c('input',{on:{"input":function($event){if(('keyCode' in $event )&&_k($event.keyCode,"delete",[8,46],$event.key,["Backspace","Delete","Del"]))return null;return onInput($event)}}})}`
371
+ `with(this){return _c('input',{on:{"input":function($event){if(!$event.type.indexOf('key' )&&_k($event.keyCode,"delete",[8,46],$event.key,["Backspace","Delete","Del"]))return null;return onInput($event)}}})}`
372
372
)
373
373
// multiple keycodes (esc)
374
374
assertCodegen (
375
375
'<input @input.esc="onInput">' ,
376
- `with(this){return _c('input',{on:{"input":function($event){if(('keyCode' in $event )&&_k($event.keyCode,"esc",27,$event.key,["Esc","Escape"]))return null;return onInput($event)}}})}`
376
+ `with(this){return _c('input',{on:{"input":function($event){if(!$event.type.indexOf('key' )&&_k($event.keyCode,"esc",27,$event.key,["Esc","Escape"]))return null;return onInput($event)}}})}`
377
377
)
378
378
// multiple keycodes (space)
379
379
assertCodegen (
380
380
'<input @input.space="onInput">' ,
381
- `with(this){return _c('input',{on:{"input":function($event){if(('keyCode' in $event )&&_k($event.keyCode,"space",32,$event.key,[" ","Spacebar"]))return null;return onInput($event)}}})}`
381
+ `with(this){return _c('input',{on:{"input":function($event){if(!$event.type.indexOf('key' )&&_k($event.keyCode,"space",32,$event.key,[" ","Spacebar"]))return null;return onInput($event)}}})}`
382
382
)
383
383
// multiple keycodes (chained)
384
384
assertCodegen (
385
385
'<input @keydown.enter.delete="onInput">' ,
386
- `with(this){return _c('input',{on:{"keydown":function($event){if(('keyCode' in $event )&&_k($event.keyCode,"enter",13,$event.key,"Enter")&&_k($event.keyCode,"delete",[8,46],$event.key,["Backspace","Delete","Del"]))return null;return onInput($event)}}})}`
386
+ `with(this){return _c('input',{on:{"keydown":function($event){if(!$event.type.indexOf('key' )&&_k($event.keyCode,"enter",13,$event.key,"Enter")&&_k($event.keyCode,"delete",[8,46],$event.key,["Backspace","Delete","Del"]))return null;return onInput($event)}}})}`
387
387
)
388
388
// number keycode
389
389
assertCodegen (
390
390
'<input @input.13="onInput">' ,
391
- `with(this){return _c('input',{on:{"input":function($event){if(('keyCode' in $event )&&$event.keyCode!==13)return null;return onInput($event)}}})}`
391
+ `with(this){return _c('input',{on:{"input":function($event){if(!$event.type.indexOf('key' )&&$event.keyCode!==13)return null;return onInput($event)}}})}`
392
392
)
393
393
// custom keycode
394
394
assertCodegen (
395
395
'<input @input.custom="onInput">' ,
396
- `with(this){return _c('input',{on:{"input":function($event){if(('keyCode' in $event )&&_k($event.keyCode,"custom",undefined,$event.key,undefined))return null;return onInput($event)}}})}`
396
+ `with(this){return _c('input',{on:{"input":function($event){if(!$event.type.indexOf('key' )&&_k($event.keyCode,"custom",undefined,$event.key,undefined))return null;return onInput($event)}}})}`
397
397
)
398
398
} )
399
399
@@ -416,12 +416,12 @@ describe('codegen', () => {
416
416
it ( 'generate events with generic modifiers and keycode correct order' , ( ) => {
417
417
assertCodegen (
418
418
'<input @keydown.enter.prevent="onInput">' ,
419
- `with(this){return _c('input',{on:{"keydown":function($event){if(('keyCode' in $event )&&_k($event.keyCode,"enter",13,$event.key,"Enter"))return null;$event.preventDefault();return onInput($event)}}})}`
419
+ `with(this){return _c('input',{on:{"keydown":function($event){if(!$event.type.indexOf('key' )&&_k($event.keyCode,"enter",13,$event.key,"Enter"))return null;$event.preventDefault();return onInput($event)}}})}`
420
420
)
421
421
422
422
assertCodegen (
423
423
'<input @keydown.enter.stop="onInput">' ,
424
- `with(this){return _c('input',{on:{"keydown":function($event){if(('keyCode' in $event )&&_k($event.keyCode,"enter",13,$event.key,"Enter"))return null;$event.stopPropagation();return onInput($event)}}})}`
424
+ `with(this){return _c('input',{on:{"keydown":function($event){if(!$event.type.indexOf('key' )&&_k($event.keyCode,"enter",13,$event.key,"Enter"))return null;$event.stopPropagation();return onInput($event)}}})}`
425
425
)
426
426
} )
427
427
@@ -528,7 +528,7 @@ describe('codegen', () => {
528
528
// with modifiers
529
529
assertCodegen (
530
530
`<input @keyup.enter="e=>current++">` ,
531
- `with(this){return _c('input',{on:{"keyup":function($event){if(('keyCode' in $event )&&_k($event.keyCode,"enter",13,$event.key,"Enter"))return null;return (e=>current++)($event)}}})}`
531
+ `with(this){return _c('input',{on:{"keyup":function($event){if(!$event.type.indexOf('key' )&&_k($event.keyCode,"enter",13,$event.key,"Enter"))return null;return (e=>current++)($event)}}})}`
532
532
)
533
533
} )
534
534
0 commit comments