v-on可以监听多个方法吗?
回答
云松回答
可以。
<input type="text" :value="name" @input="onInput" @focus="onFocus" @blur="onBlur" />

(0)