UNPKG

mine-h5-ui

Version:

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

39 lines (38 loc) 583 B
import { ModelRef } from 'vue'; /** * props list */ export interface ListItem { icon: string; color: string; value: string | number; } /** * emits */ export interface Emits { (event: 'change', e: ListItem): void; (event: 'cancel', e: MouseEvent): void; } /** * props */ export interface Props { /** * 提示文本 */ tips?: string; /** * 数据列表 */ list: ListItem[]; } /** * useBtns */ export declare namespace USEBtns { interface Option { emit: Emits; visibleModel: ModelRef<boolean>; } }