We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
2.0.0-rc.2
Vue 1: https://jsfiddle.net/pkb7gnxu/ Vue 2: https://jsfiddle.net/xmqmqem0/1/
The examples chain key listeners in Vue 1 and Vue 2: @keydown.enter.tab.prevent="incEvents"
@keydown.enter.tab.prevent="incEvents"
Click in the input field, then press either tab or enter in both examples. Vue 2 does not behave the same as Vue 1.
tab
enter
Vue 2 should chain listeners like Vue 1, or warn about bad syntax if that feature is deprecated.
Vue 2 ignores the events.
The text was updated successfully, but these errors were encountered:
fix v-on chained keyCodes (fix #3478)
13ce3a2
No branches or pull requests
Vue.js version
2.0.0-rc.2
Reproduction Link
Vue 1: https://jsfiddle.net/pkb7gnxu/
Vue 2: https://jsfiddle.net/xmqmqem0/1/
Steps to reproduce
The examples chain key listeners in Vue 1 and Vue 2:
@keydown.enter.tab.prevent="incEvents"
Click in the input field, then press either
tab
orenter
in both examples. Vue 2 does not behave the same as Vue 1.What is Expected?
Vue 2 should chain listeners like Vue 1, or warn about bad syntax if that feature is deprecated.
What is actually happening?
Vue 2 ignores the events.
The text was updated successfully, but these errors were encountered: