作者:
    Creation:2026-01-21Last update:2026-01-21

    IntlayerProvider 组件文档

    IntlayerProvider 组件是 React 应用中 Intlayer 的主要 provider。它为其所有子组件提供 Intlayer 上下文。

    用法

    tsx
    import { IntlayerProvider } from "react-intlayer";
    
    const App = ({ children }) => <IntlayerProvider>{children}</IntlayerProvider>;
    

    属性

    属性类型说明
    localeLocalesValues要使用的初始 locale。
    defaultLocaleLocalesValues作为回退使用的默认 locale。
    setLocale(locale: LocalesValues) => void用于设置 locale 的自定义函数。
    disableEditorboolean是否禁用编辑器。
    isCookieEnabledboolean是否启用 cookie 来存储 locale。