I’m using vuetify and vue js 2.6
I have one v-radio-group which contain 5 v-radio and I have 2 v-checkbox, I use those checkboxes to enable/disable radio boxes:
1. Problem one: How to initialize v-radio-group when one of the radio boxes is disabled and active.
2. I want to toggle the Checkboxes, just one of the two should be checked and not both
I appreciate every help and respond to my request thanks… hier is the code:
<template>
<div>
<v-radio-group v-model="radiogroup">
<v-radio label="Radio 1" value="radio1"></v-radio>
<v-radio label= "Radio 2"value="radio2"></v-radio>
<v-radio
label="Radio 3"
value="radio3"
:disabled="check2 || check1"
></v-radio>
<v-radio
label="Radio 4"
value="radio4"
:disabled="check2"
></v-radio>
<v-radio
label="Radio 5"
value="radio5"
:disabled="disableradio"
></v-radio>
</v-radio-group>
<v-checkbox label="Check 2" v-model="check2"></v-checkbox>
<v-checkbox label="Check 1" v-model="check1"></v-checkbox>
</div>
</template>
<script>
export default {
data() {
return {
disableradio: true,
check1: false,
check2: false,
radiogroup: "radio1",
},
},
};
</script>