Skip to content

Commit 08a7fb5

Browse files
committed
fix: v-on="object" listeners should fire after high-priority ones
fix #6805
1 parent 5665eaf commit 08a7fb5

File tree

2 files changed

+43
-2
lines changed

2 files changed

+43
-2
lines changed

src/core/instance/render-helpers/bind-object-listeners.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export function bindObjectListeners (data: any, value: any): VNodeData {
1414
for (const key in value) {
1515
const existing = on[key]
1616
const ours = value[key]
17-
on[key] = existing ? [].concat(ours, existing) : ours
17+
on[key] = existing ? [].concat(existing, ours) : ours
1818
}
1919
}
2020
}

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

+42-1
Original file line numberDiff line numberDiff line change
@@ -759,7 +759,7 @@ describe('Directive v-on', () => {
759759
const mouseup = jasmine.createSpy('mouseup')
760760
const mousedown = jasmine.createSpy('mousedown')
761761

762-
var vm = new Vue({
762+
vm = new Vue({
763763
el,
764764
template: `
765765
<foo-button
@@ -798,6 +798,47 @@ describe('Directive v-on', () => {
798798
expect(mousedown.calls.count()).toBe(1)
799799
})
800800

801+
// #6805 (v-on="object" bind order problem)
802+
it('object syntax (no argument): should fire after high-priority listeners', done => {
803+
const MyCheckbox = {
804+
template: '<input type="checkbox" v-model="model" v-on="$listeners">',
805+
props: {
806+
value: false
807+
},
808+
computed: {
809+
model: {
810+
get () {
811+
return this.value
812+
},
813+
set (val) {
814+
this.$emit('input', val)
815+
}
816+
}
817+
}
818+
}
819+
820+
vm = new Vue({
821+
el,
822+
template: `
823+
<div>
824+
<my-checkbox v-model="check" @change="change"></my-checkbox>
825+
</div>
826+
`,
827+
components: { MyCheckbox },
828+
data: {
829+
check: false
830+
},
831+
methods: {
832+
change () {
833+
expect(this.check).toBe(true)
834+
done()
835+
}
836+
}
837+
})
838+
839+
vm.$el.querySelector('input').click()
840+
})
841+
801842
it('warn object syntax with modifier', () => {
802843
new Vue({
803844
template: `<button v-on.self="{}"></button>`

0 commit comments

Comments
 (0)