React-Router open Link in new tab

前端 未结 11 621
傲寒
傲寒 2020-12-08 01:24

Is there a way to get React Router to open a link in new tab? I tried this and it did not work.



        
11条回答
  •  不知归路
    2020-12-08 02:11

    In React Router version 5.0.1 and above, you can use:

     {event.preventDefault(); window.open(this.makeHref("route"));}} />
    

提交回复
热议问题