1
0
mirror of synced 2026-04-05 16:08:37 +08:00
Files
tmagic-editor/packages/design/src/Row.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>