- base::代码分割 #review/面试/前端/React
示例
<button onClick={() => import('./AnotherLazyComponent')
.then((module) => {
const AnotherLazyComponent = module.AnotherLazyComponent;
setComponent(<AnotherLazyComponent />);
})}>
加载另一个懒加载组件
</button>
<div>
{component}
</div>