mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
10 lines
255 B
Vue
10 lines
255 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-lucide-at-sign" />
|
|
</UFormField>
|
|
</template>
|