Fe-interview: [vue] v-on可以绑定多个方法吗?

Created on 18 Jun 2019  ·  4Comments  ·  Source: haizlin/fe-interview

[vue] v-on可以绑定多个方法吗?

vue

Most helpful comment

  <input v-model="msg" type="text"
 v-on="{
input:a,
focus:b
}"/>

All 4 comments

可以 例如 input 的聚焦 失焦事件绑定各自的方法, 是不是可以这样理解

<input type="text" :value="name" @input="onInput" @focus="onFocus" @blur="onBlur" />

  <input v-model="msg" type="text"
 v-on="{
input:a,
focus:b
}"/>
Was this page helpful?
0 / 5 - 0 ratings