mine-h5-ui
Version:
一款轻量级、模块化基于 Vue3.x 的 H5 前端 UI 组件库 👍
48 lines (47 loc) • 720 B
TypeScript
/**
* props nativeType
*/
export type NativeType = 'button' | 'submit' | 'reset';
/**
* emits
*/
export interface Emits {
(event: 'click', e: MouseEvent): void;
}
/**
* 按钮类型
*/
export type ButtonType = 'default' | 'primary' | 'success' | 'info' | 'warning' | 'danger';
/**
* props
*/
export interface Props {
/**
* 原生 type
*/
nativeType?: NativeType;
/**
* 宽度
*/
width?: string;
/**
* 类型
*/
type?: ButtonType;
/**
* 是否朴素按钮
*/
plain?: boolean;
/**
* 是否禁用
*/
disabled?: boolean;
/**
* 图标
*/
icon?: string;
/**
* 颜色
*/
color?: string;
}