element-ui框架中switch数据回显

<el-switch v-model="item.functioValue" active-text="否" active-value="0"  inactive-text="是"  inactive-value="1"  >
            </el-switch>


** active-value inactive-value 前边不加 “:” 值默认是String类型
:active-value :inactive-value 前边加 “:” 值默认是number类型

你可能感兴趣的:(element-ui框架中switch数据回显)