--- title: '' description: Render components only in client-side with the component. links: - label: Source icon: i-simple-icons-github to: https://github.com/nuxt/nuxt/blob/main/packages/nuxt/src/app/components/client-only.ts size: xs --- The `` component renders its slot only in client-side. To import a component only on the client, register the component in a client-side only plugin. ## Props - `placeholderTag` | `fallbackTag`: specify a tag to be rendered server-side. - `placeholder` | `fallback`: specify a content to be rendered server-side. ```vue ``` ## Slots - `#fallback`: specify a content to be displayed server-side. ```vue ```