打开modal组件会提示如下报错信息
高版本chrome浏览器会出现这个问题
原因是:不能在获得焦点的元素或其祖先上使用 aria-hidden
解决方案:全局添加如下CSS,暂时将Modal中该属性的元素隐藏掉
.ant-modal div[aria-hidden="true"] {display: none !important;}
标签:aria,ant,design,Modal,组件,报错 From: https://www.cnblogs.com/ljt-8961/p/18456511