美文网首页
vue element-ui Radio单选框组件默认值选不中的

vue element-ui Radio单选框组件默认值选不中的

作者: 落花夕拾 | 来源:发表于2019-12-12 10:54 被阅读0次
el-radio.png
  <el-form-item label="状态" prop="status" :label-width="formLabelWidth">
            <el-radio-group v-model="ruleForm.status">
            <el-radio :label="1">禁用</el-radio>
            <el-radio :label="2">正常</el-radio>
            </el-radio-group>
          </el-form-item>


data() {
return {
 ruleForm: {
     status:1
        },
    }
}

总结:
: label=“1”,表示label的值为数字1,即期待数据值为数字
label=“1”,表示label的值为字符串1,即期待的数据值为字符串1

相关文章

网友评论

      本文标题:vue element-ui Radio单选框组件默认值选不中的

      本文链接:https://www.haomeiwen.com/subject/gwizgctx.html