mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
15 lines
238 B
Vue
15 lines
238 B
Vue
<script setup>
|
|
const id = useId()
|
|
</script>
|
|
|
|
<template>
|
|
<form>
|
|
<h2 :id="id">
|
|
id: {{ id }}
|
|
</h2>
|
|
<LazyComponentWithIds />
|
|
<ClientOnly><ComponentWithIds /></ClientOnly>
|
|
<ComponentWithIds />
|
|
</form>
|
|
</template>
|