import { Ref } from 'vue'; import { Props as ParentProps } from '../MeStep/types'; /** * 父组件参数 */ export interface StepContext { name: string; parentProps: Ref; } /** * props */ export interface Props { /** * 索引名称 */ name: string | number; }