import createHistory from 'history/createHashHistory';
const history = createHistory();
//前进
history.goBack() || history.go(-1)
//后退
history.goForward() || history.go(1)
//刷新
window.location.reload()
来源链接:blog.csdn.net/weixin_3411…
来源链接:www.cnblogs.com/whlBooK/p/1…