mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-12-21 10:40:20 +00:00
12 lines
237 B
Vue
12 lines
237 B
Vue
<template>
|
|
<component :is="uiComponent.component">
|
|
<slot></slot>
|
|
</component>
|
|
</template>
|
|
|
|
<script setup lang="ts" name="TMIcon">
|
|
import { getConfig } from './config';
|
|
|
|
const uiComponent = getConfig('components').icon;
|
|
</script>
|