mine-h5-ui
Version:
一款轻量级、模块化基于 Vue3.x 的 H5 前端 UI 组件库 👍
44 lines (43 loc) • 643 B
TypeScript
/**
* props list
*/
export interface ListItem {
text: string;
state: boolean;
icon?: string;
dot?: string;
badge?: string;
img?: string;
imgSelected?: string;
}
/**
* emits
*/
export interface Emits {
(event: 'change', item: ListItem): void;
}
/**
* props
*/
export interface Props {
/**
* 列表数据
*/
list: ListItem[];
/**
* 上边框颜色
*/
borderColor?: string;
/**
* 背景颜色
*/
background?: string;
/**
* 未选中状态颜色
*/
color?: string;
/**
* 选中状态颜色
*/
colorSelected?: string;
}