UNPKG

wecui

Version:

一款基于Vue2.x版本的移动端web组件

16 lines (10 loc) 343 B
import { WECUIComponent, WECUIComponentSize } from './component' export type ButtonType = "primary" | "warning" | "info" | "success" | "error" | "text" export declare class WECButton extends WECUIComponent { /** define button color */ color: string disabled: boolean plain: boolean size: WECUIComponentSize type: ButtonType }