You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
// 应用参数
|
|
export type MainAppProps = {
|
|
container?: HTMLElement;
|
|
// 隐藏侧边栏(菜单)
|
|
hideSider?: boolean;
|
|
// 隐藏顶部
|
|
hideHeader?: boolean;
|
|
// 隐藏 多Tab 切换
|
|
hideMultiTabs?: boolean;
|
|
}
|