From 29ef568c5f1f233f7a18fc95392daaf2b0749e29 Mon Sep 17 00:00:00 2001 From: xingyu Date: Mon, 30 Oct 2023 16:49:25 +0800 Subject: [PATCH] chore(ApiSelect): optimize the type of OptionsItem --- src/components/Form/src/components/ApiRadioGroup.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Form/src/components/ApiRadioGroup.vue b/src/components/Form/src/components/ApiRadioGroup.vue index 4ffd6a2c..c699024c 100644 --- a/src/components/Form/src/components/ApiRadioGroup.vue +++ b/src/components/Form/src/components/ApiRadioGroup.vue @@ -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' })