mirror of
https://gitee.com/yiming_chang/vue-pure-admin.git
synced 2024-12-04 04:08:54 +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;
|
||
|
}
|