-
-
Notifications
You must be signed in to change notification settings - Fork 3.3k
[vue] v-on可以绑定多个方法吗? #291
New issue
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
Labels
vue
vue
Comments
可以 例如 input 的聚焦 失焦事件绑定各自的方法, 是不是可以这样理解 |
|
No description provided. |
<input v-model="msg" type="text"
v-on="{
input:a,
focus:b
}"/> |
v-on 指令可以绑定多个方法。可以使用多个事件处理函数来处理同一个事件。
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
[vue] v-on可以绑定多个方法吗?
The text was updated successfully, but these errors were encountered: