UNPKG

mine-h5-ui

Version:

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

35 lines (34 loc) 487 B
/** * 对象参数 */ export interface Option { message?: string | number; bgColor?: string; icon?: string; durction?: number; } /** * 参数 */ export type Options = string | number | Option; /** * props */ export interface Props { /** * 提示语 */ message?: string | number; /** * 背景颜色 */ bgColor?: string; /** * 图标 */ icon?: string; /** * 延迟时间 */ durction?: number; }