import createHistory from 'history/createBrowserHistory';

const history = createHistory();
export default history;
import history from './utils/history';
const app = dva({
  history: history)}
然后在需要的地方直接饮用
history.push('/');

 

相关文章: