antd: error TS2339: Property 'centered' does not exist on type

倖福魔咒の 提交于 2020-01-06 05:27:25

问题


<Modal visible={this.state.showModel} title="添加代金券"
                      centered
                      okText="保存" cancelText="取消"
                      onOk={() => this.okBtnClick}
                      onCancel={() => this.cancelClick}
>

I use ANTD's modal to make it vertically centered, but I was wrongly told that centered does not exist and attribute 1.

来源:https://stackoverflow.com/questions/51943291/antd-error-ts2339-property-centered-does-not-exist-on-type

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!