yinbangzhong
2024-08-01 052dafe0b7678a85f5cc7af0c79491187daff7e3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import type { RouteRecordNormalized } from 'vue-router';
 
export interface AppState {
  theme: string;
  colorWeak: boolean;
  navbar: boolean;
  menu: boolean;
  topMenu: boolean;
  hideMenu: boolean;
  menuCollapse: boolean;
  footer: boolean;
  themeColor: string;
  menuWidth: number;
  globalSettings: boolean;
  device: string;
  tabBar: boolean;
  menuFromServer: boolean;
  serverMenu: RouteRecordNormalized[];
  [key: string]: unknown;
}