1 2 3 4 5 6 7 8 9
<script setup> import { useId } from "vue" const id = useId() </script> <template> <p class="vue-use-id" :id="id">{{ id }}</p> </template>