diff --git a/components/page-header/index.jsx b/components/page-header/index.jsx
index c84fca38da..5579cf322d 100644
--- a/components/page-header/index.jsx
+++ b/components/page-header/index.jsx
@@ -56,7 +56,7 @@ const renderTitle = (h, prefixCls, instance) => {
const subTitle = getComponentFromProp(instance, 'subTitle');
const tags = getComponentFromProp(instance, 'tags');
const extra = getComponentFromProp(instance, 'extra');
- const backIcon = getComponentFromProp(instance, 'backIcon') || ;
+ const backIcon = getComponentFromProp(instance, 'backIcon') !== undefined ? getComponentFromProp(instance, 'backIcon') : ;
const onBack = instance.$listeners.back;
const headingPrefixCls = `${prefixCls}-heading`;
if (title || subTitle || tags || extra) {