mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-05 19:41:40 +08:00
26 lines
649 B
Vue
26 lines
649 B
Vue
<template>
|
|
<TMagicOptionGroup v-for="(group, index) in options" :key="index" :label="group.label" :disabled="group.disabled">
|
|
<component
|
|
v-for="(item, index) in group.options"
|
|
:is="uiComponent.component"
|
|
:key="index"
|
|
:label="item.label || item.text"
|
|
:value="item.value"
|
|
:disabled="item.disabled"
|
|
>
|
|
</component>
|
|
</TMagicOptionGroup>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { getConfig, TMagicOptionGroup } from '@tmagic/design';
|
|
|
|
import { SelectGroupOption } from '../schema';
|
|
|
|
defineProps<{
|
|
options: SelectGroupOption[];
|
|
}>();
|
|
|
|
const uiComponent = getConfig('components').option;
|
|
</script>
|