NoSsr API
导入
import NoSsr from '@mui/base/NoSsr';
// 或
import { NoSsr } from '@mui/base';
NoSsr purposely removes components from the subject of Server Side Rendering (SSR).
This component can be useful in a variety of situations:
- Escape hatch for broken dependencies not supporting SSR.
- Improve the time-to-first paint on the client by only rendering above the fold.
- Reduce the rendering time on the server.
- Under too heavy server load, you can turn on service degradation.
属性
名称 | 类型 | 默认值 | 描述 |
---|---|---|---|
children | node | You can wrap a node. | |
defer | bool | false | If true , the component will not only prevent server-side rendering. It will also defer the rendering of the children into a different screen frame. |
fallback | node | null | The fallback content to display. |
组件无法持有 ref。