0👍
You should try MouseEvent
instead of simple ‘Event
‘
- [Vuejs]-Vuejs redirect in controller
- [Vuejs]-I want to show the value of label inside the pie graph. (vue-chartjs / pieceLabel)
0👍
Why not add the @click
to the <select>
and use @click="onClick($event.currentTarget)"
?
<div class="value" @click="onClick($refs.selectNative)">
<select v-if="mode=='select'" ref="selectNative" @click="onClick($event.currentTarget)">
<option value="volvo">one</option>
<option value="saab">two</option>
<option value="mercedes">three</option>
</select>
</div>
Source:stackexchange.com