|
|
|
@ -10,7 +10,12 @@ import { useRuleFormItem } from '@/hooks/component/useFormItem'
|
|
|
|
|
import { useI18n } from '@/hooks/web/useI18n' |
|
|
|
|
import { propTypes } from '@/utils/propTypes' |
|
|
|
|
|
|
|
|
|
interface OptionsItem { label: string, value: string, disabled?: boolean } |
|
|
|
|
interface OptionsItem { |
|
|
|
|
label?: string |
|
|
|
|
value?: string |
|
|
|
|
disabled?: boolean |
|
|
|
|
[key: string]: any |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
defineOptions({ name: 'ApiSelect', inheritAttrs: false }) |
|
|
|
|
|
|
|
|
|