8👍
✅
Issue is with data-toggle
property, as long as you remove it, it will work. I have tried with following and it is working, you just need to manage active class with Vue variable’s value.
<div id="app">
{{mode}}
<div class="btn-group btn-group-toggle">
<label class="btn btn-secondary active">
<input type="radio" name="options" value="now" id="option1" v-model="mode" autocomplete="off" checked> Active
</label>
<label class="btn btn-secondary">
<input type="radio" name="options" value="off" id="option2" v-model="mode" autocomplete="off"> Radio
</label>
</div>
</div>
Source:stackexchange.com