UNPKG

@squirrel-cloud/ui-vue

Version:

松鼠的坚果屋前端VUE框架

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