import { computed, defineComponent, PropType } from 'vue' export default defineComponent({ name: 'StepLoadingItem', props: { name: { type: String, }, status: { type: String as PropType<'success'| 'error' | 'loading'>, default: 'loading', }, showline: { type: Boolean, }, }, setup(props) { const state = computed(() => { return props.status }) return () => (
{ props.name }
) }, })