antd优化加载组件


antd优化加载组件

/** 问题 react使用路由、二级路由切换时页面会闪烁
  *  而使用这个组件,就可以解决这个问题
*/ 

  const renderSec = () => {
    return (
      secondChildren
        ? (
          <Suspense fallback={<div style={{ textAlign: 'center' }}><Spin size="large" /></div>}>
            <RouterView routes={secondChildren} />
          </Suspense>
        )
        : <Empty image={Empty.PRESENTED_IMAGE_SIMPLE} />
    )
  }

文章作者: KarlFranz
版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 reprint policy. If reproduced, please indicate source KarlFranz !
评论
  目录