mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-04 23:06:31 +08:00
31 lines
669 B
Vue
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>
|