invalid w
2023-10-18 0cf79d4ce2786e71444d4d9483ed77a99f57169c
fix(ApiSelect): Incorrect value type definition. close #3168
1个文件已修改
2 ■■■ 已修改文件
src/components/Form/src/components/ApiSelect.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/components/Form/src/components/ApiSelect.vue
@@ -42,7 +42,7 @@
    },
    inheritAttrs: false,
    props: {
      value: { type: Object as PropType<SelectValue> },
      value: { type: [Array, Object, String, Number] as PropType<SelectValue> },
      numberToString: propTypes.bool,
      api: {
        type: Function as PropType<(arg?: any) => Promise<OptionsItem[]>>,