Newer
Older
DH_Apicture / src / settings.js
@zhangqy zhangqy on 29 Nov 857 bytes first commit
  1. export default {
  2. /**
  3. * 网页标题
  4. */
  5. title: import.meta.env.VITE_APP_TITLE,
  6. /**
  7. * 侧边栏主题 深色主题theme-dark,浅色主题theme-light
  8. */
  9. sideTheme: 'theme-dark',
  10. /**
  11. * 是否系统布局配置
  12. */
  13. showSettings: false,
  14.  
  15. /**
  16. * 是否显示顶部导航
  17. */
  18. topNav: false,
  19.  
  20. /**
  21. * 是否显示 tagsView
  22. */
  23. tagsView: true,
  24.  
  25. /**
  26. * 是否固定头部
  27. */
  28. fixedHeader: false,
  29.  
  30. /**
  31. * 是否显示logo
  32. */
  33. sidebarLogo: true,
  34.  
  35. /**
  36. * 是否显示动态标题
  37. */
  38. dynamicTitle: false,
  39.  
  40. /**
  41. * @type {string | array} 'production' | ['production', 'development']
  42. * @description Need show err logs component.
  43. * The default is only used in the production env
  44. * If you want to also use it in dev, you can pass ['production', 'development']
  45. */
  46. errorLog: 'production'
  47. }