UNPKG

@wfrog/vc

Version:

vue3 组件库 vc

7 lines (6 loc) 275 B
import { CheckboxGroupProps, RadioGroupProps } from 'element-plus'; export interface IChoiceProps { multiple?: boolean; type?: RadioGroupProps['type'] | CheckboxGroupProps['type']; options: RadioGroupProps['options'] | CheckboxGroupProps['options'] | string[]; }