react
Meursault153
杭州电子科技大学计算机专业硕士在读
展开
-
react-router-dom 废弃了V5中的Redirect
React-router-dom 废弃了V5中的Redirect:V5的Redirect已经废弃了://v5<Redirect to="/"/>//v6<Route path="*" element={<Navigate to="/" />}/>原创 2022-01-08 16:43:04 · 1436 阅读 · 0 评论 -
react-router-dom <NavLink> v6用法
react-router 的<NavLink>组件:A <NavLink> is a special kind of that knows whether or not it is “active”.在V6 版本中activeClassName 和activeStyle 已经从NavLinkProps中移除,可以直接在<NavLink>的className和style中使用一个函数来使用active。className的用法:V5:<NavLink原创 2022-01-08 14:45:11 · 1993 阅读 · 1 评论