wecui
Version:
一款基于Vue2.x版本的移动端web组件
20 lines (13 loc) • 347 B
TypeScript
import { WECUIComponent } from './component'
export type ChecklistOptionType = {
value: string,
label: string,
disabled: boolean,
}
export type ChecklistAlign = 'left' | 'right'
export declare class WECChecklist extends WECUIComponent {
title: string
options: ChecklistOptionType[] | object
align: ChecklistAlign
max: number
}