mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-15 04:29:37 +01:00
10 lines
260 B
Vue
10 lines
260 B
Vue
<script setup lang="ts">
|
|
const email = ref('')
|
|
</script>
|
|
|
|
<template>
|
|
<UFormField label="Email" help="We won't share your email." required>
|
|
<UInput v-model="email" placeholder="Enter your email" icon="i-heroicons-at-symbol" />
|
|
</UFormField>
|
|
</template>
|