当存在多个变量checkbox1、checkbox2、checkbox3、checkbox4的变量时
javascript
-常规调用:
if(条件A){
this.$refs.checkbox1.check = true
}
if(条件B){
this.$refs.checkbox2.check = true
}
或者使用switch case
js
-动态调用:
var result = 2
// 在dom渲染完成再给checkbox赋值
this.$nextTick(() => {
this.$refs[`checkbox${result}`].checked = true
})