Attempted import error: 'Link' is not exported from 'react-router'.

  • 2019 年 11 月 21 日
  • 筆記

运行react项目的时候,会报出这样的错误

Attempted import error: 'Link' is not exported from 'react-router'.

解决办法 1:安装依赖

npm install react-router-dom

2:在要使用的组件里面引入

import { BrowserRouter as Router, Route, Link } from "react-router-dom";

即可