Ant-design-pro: V4 底部的“2019 蚂蚁金服体验技术部出品”怎么配置,这玩意怎么写死在layout footer里面了

Created on 10 Jun 2019  ·  4Comments  ·  Source: ant-design/ant-design-pro

V4 底部的“2019 蚂蚁金服体验技术部出品”怎么配置,这玩意怎么写死在layout footer里面了

Most helpful comment

const footerRender: BasicLayoutProps['footerRender'] = (_, defaultDom) => {
return React.cloneElement(defaultDom as ReactElement, { links: [], copyright: '你的公司名称’ });
}

All 4 comments

通过 footerRender 属性重制掉就可以了。

const footerRender: BasicLayoutProps['footerRender'] = (_, defaultDom) => {
return React.cloneElement(defaultDom as ReactElement, { links: [], copyright: '你的公司名称’ });
}

这里设计的不大合理,如果用户要重置footer,需要clone defaultDom,没法直接给links、copyright这两个属性赋值。

Was this page helpful?
0 / 5 - 0 ratings