Skip to content

Commit 3d46692

Browse files
feat(warns): avoid warning native modifiers on dynamic components (#11052)
Co-authored-by: Andrzej Swaton <[email protected]>
1 parent 529016b commit 3d46692

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

src/core/vdom/create-element.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ export function _createElement (
9898
ns = (context.$vnode && context.$vnode.ns) || config.getTagNamespace(tag)
9999
if (config.isReservedTag(tag)) {
100100
// 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') {
102102
warn(
103103
`The .native modifier for v-on is only valid on components but it was used on <${tag}>.`,
104104
context

test/unit/features/directives/on.spec.js

+14
Original file line numberDiff line numberDiff line change
@@ -474,6 +474,20 @@ describe('Directive v-on', () => {
474474
expect(spy.calls.count()).toBe(0)
475475
})
476476

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+
477491
it('.once modifier should work with child components', () => {
478492
vm = new Vue({
479493
el,

0 commit comments

Comments
 (0)