mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-04 23:06:31 +08:00
25 lines
587 B
Vue
25 lines
587 B
Vue
<template>
|
|
<component class="tmagic-design-radio-button" :is="uiComponent" v-bind="uiProps">
|
|
<slot></slot>
|
|
</component>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { computed } from 'vue';
|
|
|
|
import { getDesignConfig } from './config';
|
|
import type { RadioButtonProps } from './types';
|
|
|
|
defineOptions({
|
|
name: 'TMRadioButton',
|
|
});
|
|
|
|
const props = defineProps<RadioButtonProps>();
|
|
|
|
const ui = getDesignConfig('components')?.radioButton;
|
|
|
|
const uiComponent = ui?.component || 'el-radio-button';
|
|
|
|
const uiProps = computed<RadioButtonProps>(() => ui?.props(props) || props);
|
|
</script>
|