使用vant + vue构建的项目但是,第一次进入页面时,单击vant单选按钮无效。仅手动刷新约2次。可以选择单选按钮。你不知道为什么吗。您是否曾经使用遇到过类似问题的朋友?
<van-radio-group v-model="userInfo.isShowTel">
<van-cell :title="lang.showPhone" clickable @click="userInfo.isShowTel = true">
<van-radio :name="true" checked-color="#ED1818" @click="userInfo.isShowTel = true" />
</van-cell>
<van-cell :title="lang.dontShow" clickable @click="userInfo.isShowTel = false; Telresult = [];">
<van-radio :name="false" checked-color="#ED1818" @click="userInfo.isShowTel = false; Telresult = [];" />
</van-cell>
</van-radio-group>