radio-group
標籤包裹起來,@change
事件爲改變狀態時觸發;input
的value
爲綁定的值,主要做用在改變時賦值,checked
是否默認狀態<radio-group @change="onChange">
<label v-for="(item,index) in list" :key="index">
{{item.name}}
<input type="radio" name="list" :value="item.id" :checked="selectId===item.id">
</label>
</radio-group>
複製代碼
嘗試先置空數據,再從新賦值vue
this.data=[]
this.data=arr
複製代碼