1
2
3
4
5
6
7
8
9
10
11
12
13
14
| /**
| * @description 导出默认主题配置
| */
| const theme = {
| //是否国定头部 固定fixed 不固定noFixed
| header: "fixed",
| //横纵布局 horizontal vertical
| layout: "vertical",
| //是否开启主题配置按钮
| themeBar: true,
| //是否显示多标签页
| tabsBar: true,
| };
| module.exports = theme;
|
|