其他分享
首页 > 其他分享> > useHref() may be used only in the context of a <Router> component

useHref() may be used only in the context of a <Router> component

作者:互联网

"react-router-dom": "^6.3.0".使用Link组件时提示报错,useHref()只能在Router组件中使用。

 

 

解决办法:在index.tsx文件使用Router组件包裹App组件,同时删除router.js路由注册文件中的Router包裹组件,使得所有组件处在同一个Router组件之下

<React.StrictMode>
  <HashRouter>
    <App />
  </HashRouter>
</React.StrictMode>

  

标签:used,may,使用,component,包裹,useHref,router,组件,Router
来源: https://www.cnblogs.com/nature-wind8/p/16459268.html