chore(ApiSelect): optimize the type of OptionsItem

pull/38/head
xingyu 2023-10-30 16:49:25 +08:00
parent acc9760499
commit 29ef568c5f
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ import { useRuleFormItem } from '@/hooks/component/useFormItem'
import { useAttrs } from '@/hooks/core/useAttrs'
import { propTypes } from '@/utils/propTypes'
interface OptionsItem { label: string; value: string | number | boolean; disabled?: boolean }
interface OptionsItem { label: string; value: string | number | boolean; disabled?: boolean; [name: string]: any }
defineOptions({ name: 'ApiRadioGroup' })