📣 Just Released! Our official workshop to level up from Nuxt 2 to Nuxt 3.

Register now

<ClientOnly>

The <ClientOnly> 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.
<template>
<div>
<Sidebar />
<ClientOnly fallback-tag="span" fallback="Loading comments...">
<Comment />
</ClientOnly>
</div>
</template>

Slots

  • #fallback: specify a content to be displayed server-side.
<template>
<div>
<Sidebar />
<ClientOnly>
<!-- ... -->
<template #fallback>
<!-- this will be rendered on server side -->
<p>Loading comments...</p>
</template>
</ClientOnly>
</div>
</template>