张涛
2024-11-18 3ffa64648831ceade32fba83047d0e99ff92c990
1
2
3
4
5
6
7
8
9
10
11
12
export interface TagProps {
  title: string;
  name: string;
  fullPath: string;
  query?: any;
  ignoreCache?: boolean;
}
 
export interface TabBarState {
  tagList: TagProps[];
  cacheTabList: Set<string>;
}