Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 322 Bytes

Router.md

File metadata and controls

21 lines (14 loc) · 322 Bytes

React router

三种路由实现方式

  • URL 路径
import {BrowserRouter as Router} from 'react-router-dom';
  • hash 路由
import {HashRouter as Router} from 'react-router-dom';
  • 内存路由
import {MemoryRouter} from 'react-router';