2025-03-31 20:31:29 +08:00

31 lines
669 B
Vue

<template>
<component class="tmagic-design-step" :is="uiComponent" v-bind="uiProps" @click="clickHandler">
<slot></slot>
</component>
</template>
<script setup lang="ts">
import { computed } from 'vue';
import { getDesignConfig } from './config';
import type { StepProps } from './types';
defineOptions({
name: 'TMStep',
});
const props = defineProps<StepProps>();
const emit = defineEmits(['click']);
const clickHandler = (...args: any[]) => {
emit('click', ...args);
};
const ui = getDesignConfig('components')?.step;
const uiComponent = ui?.component || 'el-step';
const uiProps = computed<StepProps>(() => ui?.props(props) || props);
</script>