VUE 2 with Bootstrap 4 - Radio button action not working when using data-toggle=“buttons”
问题 I have the following code: <template> <div class="btn-group" data-toggle="buttons"> <label class="btn btn-outline-dark active"> <input type="radio" name="grp" v-model="channel" value="vh1" checked> VH1 </label> <label class="btn btn-outline-dark"> <input type="radio" name="grp" v-model="channel" value="mtv"> MTV </label> </div> </template> <script> export default { data() { return { channel: 'mtv' } }, watch: { channel: function(newValue) { console.log('value has been changed to ' + newValue)