2022-12-09 19:58:10 +08:00

12 lines
261 B
Vue

<template>
<component class="tmagic-design-row" :is="uiComponent.component">
<slot></slot>
</component>
</template>
<script setup lang="ts" name="TMRow">
import { getConfig } from './config';
const uiComponent = getConfig('components').row;
</script>