mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-06 03:57:56 +08:00
12 lines
264 B
Vue
12 lines
264 B
Vue
<template>
|
|
<component class="tmagic-design-icon" :is="uiComponent.component">
|
|
<slot></slot>
|
|
</component>
|
|
</template>
|
|
|
|
<script setup lang="ts" name="TMIcon">
|
|
import { getConfig } from './config';
|
|
|
|
const uiComponent = getConfig('components').icon;
|
|
</script>
|