ui-process-h5 0.1.13 → 0.1.15

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,10 +1,28 @@
1
1
  declare const _default: {
2
2
  name: string;
3
3
  props: {
4
+ /**
5
+ * 根据参数插入自定义tab
6
+ * label:选项卡title
7
+ * key:选项卡ID 请勿重复defaultTabList内已拥有的默认key
8
+ * type:插槽类型 "slot" "default"
9
+ * sort:排序参数,无参数默认插入末尾
10
+ * slot:插槽name
11
+ */
4
12
  tapList: {
5
13
  type: ArrayConstructor;
6
14
  default: () => never[];
7
15
  };
16
+ selfTapList: {
17
+ type: ArrayConstructor;
18
+ default: () => never[];
19
+ };
20
+ };
21
+ setup(props: any): {
22
+ isTapList: any;
23
+ active: import("vue").Ref<string>;
24
+ handleActive: (e: string, i: number) => void;
25
+ label: import("vue").Ref<any>;
8
26
  };
9
27
  };
10
28
  export default _default;