UNPKG

@squirrel-cloud/ui-vue

Version:

松鼠的坚果屋前端VUE框架

17 lines (16 loc) 338 B
import { RadioProps } from '..'; type ExcludeKeys = 'autofocus' | 'label' | 'value'; /** * 单选框组属性 */ export interface RadioGroupProps extends Omit<RadioProps, ExcludeKeys> { /** * 单选框组列表 */ items?: string[] | number[]; /** * 选中项 */ value?: string | number; } export {};