UNPKG

@aplus-frontend/ui

Version:

12 lines (11 loc) 266 B
import { VNode } from 'vue'; export interface RadioOptionType { label: string | number | (() => any) | VNode; value: string | number; visible?: boolean; } export type RadioOptionStyleType = { gap?: number; height?: number; color?: string; };