mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-06-06 00:18:51 +08:00
29 lines
574 B
TypeScript
29 lines
574 B
TypeScript
export interface StorageConfigs {
|
|
version?: string;
|
|
title?: string;
|
|
fixedHeader?: boolean;
|
|
hiddenSideBar?: boolean;
|
|
multiTagsCache?: boolean;
|
|
keepAlive?: boolean;
|
|
locale?: string;
|
|
layout?: string;
|
|
theme?: string;
|
|
darkMode?: boolean;
|
|
grey?: boolean;
|
|
weak?: boolean;
|
|
hideTabs?: boolean;
|
|
sidebarStatus?: boolean;
|
|
epThemeColor?: string;
|
|
showLogo?: boolean;
|
|
showModel?: string;
|
|
mapConfigure?: {
|
|
amapKey?: string;
|
|
options: {
|
|
resizeEnable?: boolean;
|
|
center?: number[];
|
|
zoom?: number;
|
|
};
|
|
};
|
|
username?: string;
|
|
}
|