Skip to content

Commit

Permalink
fix: IE10 '>' symbol err
Browse files Browse the repository at this point in the history
- feat: add PageHeaderWrapper props title hidden
  • Loading branch information
sendya committed Jul 9, 2020
1 parent 75859fb commit 55a076a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions examples/src/views/form/advanced-form.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<page-header-wrapper
:tab-list="tabList"
:tab-active-key="tabActiveKey"
:title="false"
:tab-change="(key) => {
this.tabActiveKey = key
console.log('PageHeader::tabChange', key)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
"omit.js": "^1.0.2",
"umi-request": "^1.2.11",
"vue-container-query": "^0.1.0",
"vue-copy-to-clipboard": "^1.0.2"
"vue-copy-to-clipboard": "^1.0.3"
},
"config": {
"port": 9528,
Expand Down
2 changes: 1 addition & 1 deletion src/components/PageHeaderWrapper/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ const defaultPageHeaderRender = (h, props, pageMeta, i18nRender) => {
let tabProps = {
breadcrumb,
extra,
title: i18nRender(pageHeaderTitle),
title: pageHeaderTitle && i18nRender(pageHeaderTitle),
footer: renderFooter(h, restProps, i18nRender),
}
if (!handleBack) {
Expand Down

0 comments on commit 55a076a

Please sign in to comment.