--- title: "" description: "Nuxt provides `` component to render its content on the client if any of its children trigger an error in SSR" --- # `` Nuxt provides a `` component to render its content on the client if any of its children trigger an error in SSR. ::alert{type=warning} This component is experimental and in order to use it you must enable the `experimental.clientFallback` option in your `nuxt.config`. :: ## Events - **`@ssr-error`**: Event emitted when a child triggers an error in SSR. Note that this will only be triggered on the server. ```vue ``` ## Props - **placeholderTag** | **fallbackTag**: Specify a fallback tag to be rendered if the slot fails to render. - **type**: `string` - **default**: `div` - **placeholder** | **fallback**: Specify fallback content to be rendered if the slot fails to render. - **type**: `string` - **keepFallback**: Keep the fallback content if it failed to render server-side. - **type**: `boolean` - **default**: `false` ```vue ``` ## Slots - **#fallback**: specify content to be displayed server-side if the slot fails to render. ```vue ```