mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
658a0ffed7
Co-authored-by: Daniel Roe <daniel@roe.dev> Co-authored-by: Sébastien Chopin <seb@nuxt.com>
22 lines
362 B
Vue
22 lines
362 B
Vue
<script setup>
|
|
const emailId = useId()
|
|
const passwordId = useId()
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<label :for="emailId">Email</label>
|
|
<input
|
|
:id="emailId"
|
|
name="email"
|
|
type="email"
|
|
>
|
|
<label :for="passwordId">Password</label>
|
|
<input
|
|
:id="passwordId"
|
|
name="password"
|
|
type="password"
|
|
>
|
|
</div>
|
|
</template>
|