<radio style="transform:scale(0.8)" :checked='isXuanzhong' @click="radioCheck(isXuanzhong)" color="#ff7423"></radio>
export default {
data() { return {
radiovle:"",
isXuanzhong:false, }
}
}
methods: { radioCheck(e){ this.isXuanzhong = e ? false : true }, }
标签:return,标签,isXuanzhong,radio,切换,false From: https://www.cnblogs.com/jn-zc/p/17019817.html