• 模拟浏览器在位置更改时的滚动恢复。应用应该只渲染一个这样的组件,就在 Scripts 组件之前。

    import { ScrollRestoration } from "react-router";

    export default function Root() {
    return (
    <html>
    <body>
    <ScrollRestoration />
    <Scripts />
    </body>
    </html>
    );
    }

    此组件渲染一个内联 <script> 以防止滚动闪烁。nonce 属性将被传递到 script 标签,以允许 CSP nonce 的使用。

    <ScrollRestoration nonce={cspNonce} />
    

    参数

    返回值 null | Element

属性

displayName: string