mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-12 00:53:55 +00:00
658a0ffed7
Co-authored-by: Daniel Roe <daniel@roe.dev> Co-authored-by: Sébastien Chopin <seb@nuxt.com>
16 lines
239 B
Vue
16 lines
239 B
Vue
<script setup>
|
|
const id = useId()
|
|
</script>
|
|
|
|
<template>
|
|
<form>
|
|
<h2 :id="id">
|
|
id: {{ id }}
|
|
</h2>
|
|
<LazyComponentWithIds />
|
|
<ClientOnly><ComponentWithIds /></ClientOnly>
|
|
<ComponentWithIds />
|
|
</form>
|
|
</template>
|
|
|