mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-08-29 06:22:16 +08:00
17 lines
319 B
Vue
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>
|