mirror of
https://github.com/vbenjs/vue-vben-admin.git
synced 2025-01-24 10:33:50 +08:00
chore(ApiSelect): optimize the type of OptionsItem
This commit is contained in:
parent
726bb73b58
commit
5b9759710b
@ -32,7 +32,7 @@
|
||||
import { useI18n } from '/@/hooks/web/useI18n';
|
||||
import { propTypes } from '/@/utils/propTypes';
|
||||
|
||||
type OptionsItem = { label: string; value: string; disabled?: boolean };
|
||||
type OptionsItem = { label?: string; value?: string; disabled?: boolean; [name: string]: any };
|
||||
|
||||
export default defineComponent({
|
||||
name: 'ApiSelect',
|
||||
|
Loading…
Reference in New Issue
Block a user