mine-h5-ui
Version:
一款轻量级、模块化基于 Vue3.x 的 H5 前端 UI 组件库 👍
34 lines (33 loc) • 481 B
TypeScript
/**
* names
*/
export interface Names extends Record<string, string> {
default: string;
network: string;
search: string;
}
/**
* props
*/
export interface Props {
/**
* 文本内容
*/
text?: string;
/**
* 类型
*/
type?: 'default' | 'network' | 'search';
/**
* 高度
*/
height?: number;
/**
* 自定义图标
*/
iconName?: string;
/**
* 自定义图片
*/
url?: string;
}