UNPKG

mine-h5-ui

Version:

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

24 lines (23 loc) 296 B
/** * emits */ export interface Emits { (event: 'click', e: MouseEvent): void; } /** * props */ export interface Props { /** * class 名称 */ name: string; /** * 图标颜色 */ color?: string; /** * 图标大小 */ size?: string; }