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