React Router V4.2没有获得访问样式

const activeLink = {
   "color": "red"
}
<Link to="/" activeStyle={activeLink}>
  All categories
</Link>


我尝试过但没有成功

最佳答案

Link组件没有activeStyle,但是NavLink组件却没有。

<NavLink
  exact
  to="/"
  activeStyle={{ color: "red" }}
>
  All categories
</NavLink>

关于javascript - React Router v4.2风格,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/51535981/

10-11 14:17