Module ‘“../node_modules/@types/react-router“‘ has no exported member ‘withRouter‘.

造成原因

项目typescript 是 3.9的版本,@types/react-router 依赖也没有固定版本,导致@types/react-router升级以后,采用了3.9不支持的语法,导致报错

解决

在package.json 里面固定@types/react-router 依赖版本

你可能感兴趣的:(前端,typescript)