1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
| import { ProLayoutProps } from '@ant-design/pro-components';
|
| /**
| * @name
| */
| const Settings: ProLayoutProps & {
| pwa?: boolean;
| logo?: any;
| } = {
| navTheme: 'light',
| menu: {
| locale: false
| },
| layout: 'mix',
| contentWidth: 'Fluid',
| fixedHeader: true,
| fixSiderbar: true,
| footerRender: false,
| menuHeaderRender: false,
| splitMenus: false,
| colorWeak: false,
| title: '三个身边',
| pwa: true,
| logo: false,
| iconfontUrl: '',
| token: {
| // 参见ts声明,demo 见文档,通过token 修改样式
| //https://procomponents.ant.design/components/layout#%E9%80%9A%E8%BF%87-token-%E4%BF%AE%E6%94%B9%E6%A0%B7%E5%BC%8F
| },
| };
| export default Settings;
|
|