mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-05 19:41:40 +08:00
25 lines
531 B
Vue
25 lines
531 B
Vue
<template>
|
|
<component class="tmagic-design-steps" :is="uiComponent" v-bind="uiProps">
|
|
<slot></slot>
|
|
</component>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { computed } from 'vue';
|
|
|
|
import { getDesignConfig } from './config';
|
|
import type { StepsProps } from './types';
|
|
|
|
defineOptions({
|
|
name: 'TMSteps',
|
|
});
|
|
|
|
const props = defineProps<StepsProps>();
|
|
|
|
const ui = getDesignConfig('components')?.steps;
|
|
|
|
const uiComponent = ui?.component || 'el-steps';
|
|
|
|
const uiProps = computed(() => ui?.props(props) || props);
|
|
</script>
|