Skip to content

Commit

Permalink
test: change model text's priority case (vuejs#9170)
Browse files Browse the repository at this point in the history
  • Loading branch information
dejour authored and aJean committed Aug 19, 2020
1 parent c74aad3 commit abf7b7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/features/directives/model-text.spec.js
Expand Up @@ -238,7 +238,7 @@ describe('Directive v-model text', () => {
template: '<input v-model="a" @input="onInput">',
methods: {
onInput (e) {
spy(e.target.value)
spy(this.a)
}
}
}).$mount()
Expand Down

0 comments on commit abf7b7d

Please sign in to comment.