2023-05-29 21:09:26 +08:00

17 lines
319 B
Vue

<template>
<component class="tmagic-design-icon" :is="uiComponent">
<slot></slot>
</component>
</template>
<script setup lang="ts">
import { getConfig } from './config';
defineOptions({
name: 'TMIcon',
});
const ui = getConfig('components')?.icon;
const uiComponent = ui?.component || 'el-icon';
</script>