I have the following bootstrap button group in a VueJS based project...
<div class="btn-group btn-group-xs pull-right" data-toggle="buttons">
<label class="btn btn-primary label-primary">
<input type="radio" name="options" id="option1" autocomplete="off" v-on:click="clearEntries"> A
</label>
<label class="btn btn-primary label-primary">
<input type="radio" name="options" id="option2" autocomplete="off" v-on:click="clearEntries"> B
</label>
<label class="btn btn-primary active label-primary">
<input type="radio" name="options" id="option3" autocomplete="off" checked v-on:click="clearEntries"> C
</label>
<label class="btn btn-primary label-primary">
<input type="radio" name="options" id="option4" autocomplete="off" v-on:click="clearEntries"> D
</label>
</div>
All I want to do is call a method when one of the radio buttons is selected/checked.
But the click event is never fired. I'm not sure if it is being suppressed by the bootstrap css.
Any ideas?