mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-05 19:41:40 +08:00
22 lines
528 B
Vue
22 lines
528 B
Vue
<template>
|
|
<component class="tmagic-design-icon" :is="uiComponent" v-bind="uiProps">
|
|
<slot></slot>
|
|
</component>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { computed } from 'vue';
|
|
|
|
import { getDesignConfig } from './config';
|
|
import { IconProps } from './types';
|
|
|
|
defineOptions({
|
|
name: 'TMIcon',
|
|
});
|
|
|
|
const ui = getDesignConfig('components')?.icon;
|
|
const uiComponent = ui?.component || 'el-icon';
|
|
const props = defineProps<IconProps>();
|
|
const uiProps = computed<IconProps>(() => ui?.props(props) || props);
|
|
</script>
|