我试图弄清楚代码拆分如何与webpack2.x
和一起使用react-router-dom
。
"react-router-dom": "^4.0.0"
但是我阅读了文档并没有找到像这样使用的方法:
getComponent
还在工作吗?
我发现react-router-dom
文档只是给你一些例子,没有解释。
我看到react-router
的是v4.0.0-beta.8
,也许我应该react-router-dom
稍后使用?
module.exports = {
path: 'home',
getComponent(nextState, cb) {
import('./main').then(component => {
cb(null, component);
}).catch(err => {
console.log('Failed to load "home" component', err);
});
}
};