© 2026 Hedgehog Software, LLC
<!-- pages/index.vue --> <template> <div> <ClientOnly> <RandomNum /> </ClientOnly> </div> </template>
<!-- Components/RandomNum.vue --> <script setup lang="ts"> const rando = Math.random() * 100; </script> <template> <p>{{ rando }}</p> </template>
hints:warn [hydration] Component RandomNum seems to have different html pre and post-hydration. Please make sure you don't have any hydration issue.