I want to use radio buttons so each time I select one the form changes, I tried with simple html code but I would love to do it with Ant design vue. here's the code I have now i want to make it with antdv..
<input type="radio" v-model="z" value="x" > <span>Xx</span>
<input type="radio" v-model="z" value="y" > <span>Yy/span>
<div v-if="z === 'x'"> /*some code here for form n1*/</div>
<div v-if="z === 'y'"> /*some code here for form n2*/</div>
data(){
return {
z:'x'}
},