UNPKG

mine-h5-ui

Version:

一款轻量级、模块化基于 Vue3.x 的 H5 前端 UI 组件库 👍

19 lines (18 loc) 303 B
import { Ref } from 'vue'; import { Props as ParentProps } from '../MeStep/types'; /** * 父组件参数 */ export interface StepContext { name: string; parentProps: Ref<ParentProps>; } /** * props */ export interface Props { /** * 索引名称 */ name: string | number; }