美文网首页
vue el-switch 绑定数值时注意问题

vue el-switch 绑定数值时注意问题

作者: veterans | 来源:发表于2019-03-07 11:36 被阅读0次

    vue el-switch 绑定数值时要用

                                                  <el-switch v-model="scope.row.if_face_sq"
                                                               :active-value="1"
                                                               :inactive-value="0"
                                                               active-color="#13ce66" inactive-color="#ff4949">
                                                    </el-switch>
    

    与不能用

                                                  <el-switch v-model="scope.row.if_face_sq"
                                                               active-value="1"
                                                               inactive-value="0"
                                                               active-color="#13ce66" inactive-color="#ff4949">
                                                    </el-switch>
    

    相关文章

      网友评论

          本文标题:vue el-switch 绑定数值时注意问题

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