vue3-radial-progress icon indicating copy to clipboard operation
vue3-radial-progress copied to clipboard

[Feature request] support SSR

Open Yves852 opened this issue 11 months ago • 0 comments

Right now the component used in a SSR page will throw warnings for hydration mismatch like the example bellow.

image image

As workaround it can be wrapped with <ClientOnly> tag for client rendering.

<div>
+  <ClientOnly>
      <RadialProgress /* ... */ >
      </RadialProgress>
+  </ClientOnly>
</div>

Config

  • @unocss/nuxt 0.58.6
  • Nuxt 3.11.1
  • vue3-radial-progress 1.1.1

Yves852 avatar Mar 22 '24 14:03 Yves852