mirror of
https://github.com/jeecgboot/jeecg-boot.git
synced 2025-09-10 04:59:30 +00:00
11 lines
225 B
Vue
11 lines
225 B
Vue
// 应用参数
|
|
export type MainAppProps = {
|
|
container?: HTMLElement;
|
|
// 隐藏侧边栏(菜单)
|
|
hideSider?: boolean;
|
|
// 隐藏顶部
|
|
hideHeader?: boolean;
|
|
// 隐藏 多Tab 切换
|
|
hideMultiTabs?: boolean;
|
|
}
|