|
@@ -89,4 +89,17 @@ declare global {
|
|
|
pageSize: number;
|
|
pageSize: number;
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+import '@vue/runtime-core';
|
|
|
|
|
+
|
|
|
|
|
+declare module '@vue/runtime-core' {
|
|
|
|
|
+ export interface ComponentCustomProperties {
|
|
|
|
|
+ navigateBackOrHome: () => void;
|
|
|
|
|
+ showToast: (title: string) => void;
|
|
|
|
|
+ selectDictLabel: (datas: any, value: number | string) => string;
|
|
|
|
|
+ selectDictLabels: (datas: any, value: any, separator?: any) => string;
|
|
|
|
|
+ useDict: (...args: string[]) => { [key: string]: DictDataOption[] };
|
|
|
|
|
+ $u: any;
|
|
|
|
|
+ }
|
|
|
|
|
+}
|
|
|
export {};
|
|
export {};
|