wecui
Version:
一款基于Vue2.x版本的移动端web组件
18 lines (13 loc) • 349 B
TypeScript
import { WECUIComponent } from './component'
export type RadioAlign = 'left' | 'right'
export type RadioOptionItem = {
value: string | object,
label: string,
disabled: boolean
}
export declare class WECRadio extends WECUIComponent {
title: string
options: Array<RadioOptionItem> | object
value: string | object
align: RadioAlign
}