一看到报错就头大,很可能是某一个地方有问题,这次是懒加载问题,记录一下,多带了花括号{}

注意,一定要注意。不然就要带 return 或者去掉{}可直接省略return

const Other = React.lazy(() => import('./pages/other/index'));

const About = React.lazy(() => { return import('./pages/home/index')} );

 

 

 

更多推荐