dva Cannot find module 'history/createBrowserHistory'

// import createHistory from 'history/createBrowserHistory';
// 报错 Error: Cannot find module 'history/createBrowserHistory';

// 改成
import { createBrowserHistory  as createHistory} from 'history';

const app = dva({
  history: createHistory(),
});

 

本文参考自:https://blog.csdn.net/qq_37881565/article/details/110433856

posted @ 2021-05-08 10:46  本溢  阅读(484)  评论(0)    收藏  举报