mine-h5-ui
Version:
一款轻量级、模块化基于 Vue3.x 的 H5 前端 UI 组件库 👍
42 lines (41 loc) • 539 B
TypeScript
/**
* 参数
*/
export interface Params {
cols: number;
borderColor: string;
}
/**
* 父组件参数
*/
export interface GridContext {
name: string;
params: Params;
}
/**
* emits
*/
export interface Emits {
(event: 'click', e: MouseEvent): void;
}
/**
* props
*/
export interface Props {
/**
* 图标
*/
icon?: string;
/**
* 图标的颜色
*/
iconColor?: string;
/**
* 文本
*/
text?: string;
/**
* 文本颜色
*/
textColor?: string;
}