react-lazy-with-preload:具有预加载支持的React.lazy()!

时间:2024-06-05 22:52:21
【文件属性】:

文件名称:react-lazy-with-preload:具有预加载支持的React.lazy()!

文件大小:90KB

文件格式:ZIP

更新时间:2024-06-05 22:52:21

TypeScript

react-lazy-with-preload包装了React.lazy() API,并增加了在首次渲染组件之前对其进行预加载的功能。 安装 npm install react-lazy-with-preload 用法 前: import { lazy , Suspense } from "react" ; const OtherComponent = lazy ( ( ) => import ( "./OtherComponent" ) ) ; 后: import { Suspense } from "react" ; import lazy from "react-lazy-with-preload" ; const OtherComponent = lazy ( ( ) => import ( "./OtherComponent" ) ) ; // ... OtherCom


【文件预览】:
react-lazy-with-preload-master
----.gitignore(19B)
----tsconfig.json(410B)
----README.md(2KB)
----.prettierrc(50B)
----.vscode()
--------launch.json(740B)
--------settings.json(198B)
----LICENSE(1KB)
----package.json(2KB)
----src()
--------__tests__()
--------index.ts(982B)
----jest.config.js(255B)
----tsconfig.build.json(83B)
----babel.config.js(176B)
----.eslintrc.json(2KB)
----package-lock.json(467KB)

网友评论