File tree 2 files changed +15
-1
lines changed
test/unit/features/directives
2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ export function _createElement (
98
98
ns = ( context . $vnode && context . $vnode . ns ) || config . getTagNamespace ( tag )
99
99
if ( config . isReservedTag ( tag ) ) {
100
100
// platform built-in elements
101
- if ( process . env . NODE_ENV !== 'production' && isDef ( data ) && isDef ( data . nativeOn ) ) {
101
+ if ( process . env . NODE_ENV !== 'production' && isDef ( data ) && isDef ( data . nativeOn ) && data . tag !== 'component' ) {
102
102
warn (
103
103
`The .native modifier for v-on is only valid on components but it was used on <${ tag } >.` ,
104
104
context
Original file line number Diff line number Diff line change @@ -474,6 +474,20 @@ describe('Directive v-on', () => {
474
474
expect ( spy . calls . count ( ) ) . toBe ( 0 )
475
475
} )
476
476
477
+ it ( 'should not throw a warning if native modifier is used on a dynamic component' , ( ) => {
478
+ vm = new Vue ( {
479
+ el,
480
+ template : `
481
+ <component is="div" @click.native="foo('native')" @click="foo('regular')"/>
482
+ ` ,
483
+ methods : { foo : spy } ,
484
+ } )
485
+
486
+ triggerEvent ( vm . $el , 'click' )
487
+ expect ( `The .native modifier for v-on is only valid on components but it was used on <div>.` ) . not . toHaveBeenWarned ( )
488
+ expect ( spy . calls . allArgs ( ) ) . toEqual ( [ [ 'regular' ] ] ) ; // Regular @click should work for dynamic components resolved to native HTML elements.
489
+ } )
490
+
477
491
it ( '.once modifier should work with child components' , ( ) => {
478
492
vm = new Vue ( {
479
493
el,
You can’t perform that action at this time.
0 commit comments