Blame view

src/settings.js 1002 Bytes
80a28914e   吉鹏   init
1
  module.exports = {
d7d9c38c2   Adam   auto commit the c...
2
    title: 'Vue Element Admin',
80a28914e   吉鹏   init
3

d7d9c38c2   Adam   auto commit the c...
4
5
6
7
8
9
10
11
12
13
14
    /**
     * @type {boolean} true | false
     * @description Whether show the settings right-panel
     */
    showSettings: true,
  
    /**
     * @type {boolean} true | false
     * @description Whether need tagsView
     */
    tagsView: true,
80a28914e   吉鹏   init
15
16
17
18
19
  
    /**
     * @type {boolean} true | false
     * @description Whether fix the header
     */
d7d9c38c2   Adam   auto commit the c...
20
    fixedHeader: false,
80a28914e   吉鹏   init
21
22
23
24
25
  
    /**
     * @type {boolean} true | false
     * @description Whether show the logo in sidebar
     */
d7d9c38c2   Adam   auto commit the c...
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
    sidebarLogo: false,
  
    /**
     * @type {boolean} true | false
     * @description Whether support pinyin search in headerSearch
     * Bundle size minified 47.3kb,minified + gzipped 63kb
     */
    supportPinyinSearch: true,
  
    /**
     * @type {string | array} 'production' | ['production', 'development']
     * @description Need show err logs component.
     * The default is only used in the production env
     * If you want to also use it in dev, you can pass ['production', 'development']
     */
    errorLog: 'production'
80a28914e   吉鹏   init
42
  }