UNPKG

mine-h5-ui

Version:

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

36 lines (35 loc) 448 B
/** * emits */ export interface Emits { (event: 'click', e: MouseEvent): void; } /** * props */ export interface Props { /** * 动画类型 */ type?: string; /** * 字体大小 */ size?: number; /** * 字体 */ family?: string; /** * 颜色 */ color?: string; /** * 背景色 */ background?: string; /** * 文本 */ text: string; }