合同小程序后台管理系统前端代码
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.

10 lines
225 B

3 months ago
  1. // 应用参数
  2. export type MainAppProps = {
  3. container?: HTMLElement;
  4. // 隐藏侧边栏(菜单)
  5. hideSider?: boolean;
  6. // 隐藏顶部
  7. hideHeader?: boolean;
  8. // 隐藏 多Tab 切换
  9. hideMultiTabs?: boolean;
  10. }