foucui 2.3.3 → 2.3.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,8 +1,10 @@
1
- import { Ref } from 'vue';
1
+ import { Ref, VNode, VNodeChild } from 'vue';
2
2
  export interface FouSelectOption {
3
3
  value: string | number | boolean;
4
4
  label: string;
5
5
  disabled?: boolean;
6
+ /** 插槽自定义内容渲染(下拉复用) */
7
+ render?: () => VNodeChild | VNode | VNode[];
6
8
  }
7
9
  export type FouSelectValue = string | number | boolean;
8
10
  export interface FouSelectContext {