UNPKG

roninz-form

Version:

基于element-plus的数据驱动表单组件,常用于可视化项目或表单较多的中台项目

9 lines (8 loc) 235 B
import type { RadioProps, RadioButtonProps } from 'element-plus'; export type RRadioProps = { options: (RadioProps & RadioButtonProps & { value: ModelValue; })[]; type?: 'button' | 'group'; border?: boolean; };