A double click event?
You can use any native event, e.g. v-on:dblclick
.
Thanks.
v-on:dblclick
Still wrong
For reference with Vue 2 it should be : v-on:dblclick.native
^ Note: .native
is only necessary when binding native events on components
// components
<foo v-on:dblclick.native ="doBar"/>
// normal elements
<div v-on:dblclick="doBar"/>
nice
i has inpute dbclick,solve my problems----dblclick!!
thanks
Most helpful comment
^ Note:
.native
is only necessary when binding native events on components