h5-nav
统一的路由系统,提供一套路由系统的统一api,便于在各类项目中进行移植。
h5-nav的安装和使用
安装
yarn add h5-nav react-fire-nav
初始化
import H5Nav from 'h5-nav';
import Nav from 'react-fire-nav';
const store = ...你的Reduxstore
H5Nav.setAdatper(new Nav( store ));
使用
import H5Nav from 'h5-nav';
H5Nav.push("路由url",{params:'参数'})
H5Nav.getParams('params') \ H5Nav.getParams()
H5Nav.replace("路由url")
H5Nav.goBack()