@vue-start/pro 0.5.55 → 0.5.56
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.
- package/dist/index.d.ts +9 -0
- package/dist/index.es.js +756 -743
- package/dist/index.js +2 -2
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -2647,6 +2647,9 @@ declare const layoutProps: () => {
|
|
|
2647
2647
|
findFirstMenu: {
|
|
2648
2648
|
type: FunctionConstructor;
|
|
2649
2649
|
};
|
|
2650
|
+
onItemClick: {
|
|
2651
|
+
type: FunctionConstructor;
|
|
2652
|
+
};
|
|
2650
2653
|
}>> & {
|
|
2651
2654
|
sessionKey?: string | undefined;
|
|
2652
2655
|
clearWhileUnmount?: boolean | undefined;
|
|
@@ -2765,6 +2768,9 @@ declare const ProLayout: vue.DefineComponent<Partial<ExtractPropTypes<{
|
|
|
2765
2768
|
findFirstMenu: {
|
|
2766
2769
|
type: FunctionConstructor;
|
|
2767
2770
|
};
|
|
2771
|
+
onItemClick: {
|
|
2772
|
+
type: FunctionConstructor;
|
|
2773
|
+
};
|
|
2768
2774
|
}>> & {
|
|
2769
2775
|
sessionKey?: string | undefined;
|
|
2770
2776
|
clearWhileUnmount?: boolean | undefined;
|
|
@@ -2881,6 +2887,9 @@ declare const ProLayout: vue.DefineComponent<Partial<ExtractPropTypes<{
|
|
|
2881
2887
|
findFirstMenu: {
|
|
2882
2888
|
type: FunctionConstructor;
|
|
2883
2889
|
};
|
|
2890
|
+
onItemClick: {
|
|
2891
|
+
type: FunctionConstructor;
|
|
2892
|
+
};
|
|
2884
2893
|
}>> & {
|
|
2885
2894
|
sessionKey?: string | undefined;
|
|
2886
2895
|
clearWhileUnmount?: boolean | undefined;
|