<a-switch>組件使用v-decorator設(shè)置默認值,只寫initialValue:true不生效,需要加上valuePropName:'checked'

image.png
<a-form-item
label="登錄狀態(tài)"
:label-col="labelCol"
:wrapper-col="wrapperCol"
>
<a-switch
checked-children="允許"
un-checked-children="不允許"
v-decorator="['loginStatus',{initialValue:true,valuePropName:'checked'}]"
/>
</a-form-item>