diff --git a/.npmrc b/.npmrc new file mode 100644 index 00000000..7f082f23 --- /dev/null +++ b/.npmrc @@ -0,0 +1 @@ +registry=https://registry.npmmirror.com \ No newline at end of file diff --git a/docs/reference/plugin/plugins/layout.md b/docs/reference/plugin/plugins/layout.md index 4725b956..9dc05e16 100644 --- a/docs/reference/plugin/plugins/layout.md +++ b/docs/reference/plugin/plugins/layout.md @@ -109,35 +109,35 @@ export default { }, ``` -### footer +#### footer - **类型**:`String` - **默认值**:`null` - **详情**:页面底部的文字。 -### theme +#### theme - **类型**:`String` - **默认值**:`dark` - **详情**:主题,可选有 `dark`、`light` -### navigation +#### navigation - **类型**:`String` - **默认值**:`side` - **详情**:页面布局类型,可选有 `side`、 `top`、 `mixin` -### fixedHeader +#### fixedHeader - **类型**:`Boolean` - **默认值**:`false` - **详情**:是否固定头部,不跟随页面滚动。 -### fixedSideBar +#### fixedSideBar - **类型**:`Boolean` - **默认值**:`true` @@ -179,7 +179,7 @@ export default { - **详情**:菜单配置,子项具体配置如下: - - **name**:菜单的名称。通过匹配 `name` 和路由元信息 [meta](http://localhost:8080/zh/guide/route.html#%E6%89%A9%E5%B1%95%E8%B7%AF%E7%94%B1%E5%85%83%E4%BF%A1%E6%81%AF) 中的 `name`,把菜单和路由关联起来,然后使用路由元信息补充菜单配置,比如 `title`、`path` 等。 + - **name**:菜单的名称。通过匹配 `name` 和路由元信息 [meta](../../../guide/route.md#扩展路由元信息) 中的 `name`,把菜单和路由关联起来,然后使用路由元信息补充菜单配置,比如 `title`、`path` 等。 - **path**:菜单的路径,可配置第三方地址。 @@ -211,6 +211,28 @@ export const layout = { }; ``` + +#### top +- **类型**:`String` + +- **默认值**:`true` + +- **详情**:是否显示 top 区域。 + +#### side +- **类型**:`String` + +- **默认值**:`true` + +- **详情**:是否显示 side 区域。 + +#### top +- **类型**:`String` + +- **默认值**:`true` + +- **详情**:是否显示 top 区域。 + #### customHeader - **类型**:Vue Component diff --git a/docs/zh/reference/plugin/plugins/layout.md b/docs/zh/reference/plugin/plugins/layout.md index 1d154c87..9dc05e16 100644 --- a/docs/zh/reference/plugin/plugins/layout.md +++ b/docs/zh/reference/plugin/plugins/layout.md @@ -109,35 +109,35 @@ export default { }, ``` -### footer +#### footer - **类型**:`String` - **默认值**:`null` - **详情**:页面底部的文字。 -### theme +#### theme - **类型**:`String` - **默认值**:`dark` - **详情**:主题,可选有 `dark`、`light` -### navigation +#### navigation - **类型**:`String` - **默认值**:`side` - **详情**:页面布局类型,可选有 `side`、 `top`、 `mixin` -### fixedHeader +#### fixedHeader - **类型**:`Boolean` - **默认值**:`false` - **详情**:是否固定头部,不跟随页面滚动。 -### fixedSideBar +#### fixedSideBar - **类型**:`Boolean` - **默认值**:`true` @@ -211,6 +211,28 @@ export const layout = { }; ``` + +#### top +- **类型**:`String` + +- **默认值**:`true` + +- **详情**:是否显示 top 区域。 + +#### side +- **类型**:`String` + +- **默认值**:`true` + +- **详情**:是否显示 side 区域。 + +#### top +- **类型**:`String` + +- **默认值**:`true` + +- **详情**:是否显示 top 区域。 + #### customHeader - **类型**:Vue Component diff --git a/packages/fes-plugin-layout/src/runtime/views/BaseLayout.vue b/packages/fes-plugin-layout/src/runtime/views/BaseLayout.vue index 08f30c4f..cd3ae9e8 100644 --- a/packages/fes-plugin-layout/src/runtime/views/BaseLayout.vue +++ b/packages/fes-plugin-layout/src/runtime/views/BaseLayout.vue @@ -70,7 +70,7 @@