2022.01.29,修复部分bug,准备发布3.0正式版。

This commit is contained in:
vdpAdmin
2022-01-29 19:49:51 +08:00
parent 63cf735261
commit eeb0065d80
55 changed files with 96 additions and 102 deletions

View File

@ -49,7 +49,7 @@ export const createBooleanEditor = function (propName, propLabelKey) {
render(h) {
return (
<el-form-item label={translate(propLabelKey)}>
<el-checkbox v-model={this.optionModel[propName]} />
<el-switch v-model={this.optionModel[propName]} />
</el-form-item>
)
}