UNPKG

@squirrel-cloud/ui-vue

Version:

松鼠的坚果屋前端VUE框架

43 lines (42 loc) 697 B
import { ComponentSize, SelectionVariant } from '../../typings'; /** * 复选框属性 */ export interface CheckboxProps { /** * 关联表单 */ form?: string; /** * 名称 */ name?: string; /** * 是否禁用 */ disabled?: boolean; /** * 复选框大小 */ size?: ComponentSize; /** * 是否为半选状态 */ indeterminate?: boolean; /** * 复选框变体 */ variant?: SelectionVariant; /** * 是否自动获取焦点 */ autofocus?: boolean; /** * 复选框标签 */ label?: string; /** * 复选框值 */ value: string | number; }