mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-05 19:41:40 +08:00
fix(form): select option label不生效
This commit is contained in:
parent
0f2bd3f01d
commit
9034cef0d2
@ -24,7 +24,15 @@
|
||||
v-for="(group, index) in (options as SelectGroupOption[])"
|
||||
:key="index"
|
||||
:is="optionGroupComponent?.component || 'el-option-group'"
|
||||
v-bind="optionGroupComponent?.props(group) || group"
|
||||
v-bind="
|
||||
optionGroupComponent?.props({
|
||||
label: group.label,
|
||||
disabled: group.disabled,
|
||||
}) || {
|
||||
label: group.label,
|
||||
disabled: group.disabled,
|
||||
}
|
||||
"
|
||||
>
|
||||
<component
|
||||
v-for="(item, index) in group.options"
|
||||
@ -51,7 +59,17 @@
|
||||
class="tmagic-design-option"
|
||||
:key="config.valueKey ? option.value[config.valueKey] : option.value"
|
||||
:is="optionComponent?.component || 'el-option'"
|
||||
v-bind="optionComponent?.props(option) || option"
|
||||
v-bind="
|
||||
optionComponent?.props({
|
||||
label: option.text,
|
||||
value: option.value,
|
||||
disabled: option.disabled,
|
||||
}) || {
|
||||
label: option.text,
|
||||
value: option.value,
|
||||
disabled: option.disabled,
|
||||
}
|
||||
"
|
||||
>
|
||||
</component>
|
||||
</template>
|
||||
|
Loading…
x
Reference in New Issue
Block a user