mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-12-12 11:22:56 +00:00
12 lines
222 B
Vue
12 lines
222 B
Vue
<template>
|
|
<component :is="uiComponent.component">
|
|
<slot></slot>
|
|
</component>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { getConfig } from './config';
|
|
|
|
const uiComponent = getConfig('components').row;
|
|
</script>
|