input
Minimal input without borders or background
Minimal input without borders or background
Загрузка превью…
src/input/c-input-31.vue
<script setup lang="ts">
import { Field, FieldLabel } from "@/components/ui/field"
import { Input } from "@/components/ui/input"
</script>
<template>
<Field class="w-full max-w-xs">
<FieldLabel for="minimal-input">Invisible Input</FieldLabel>
<Input
id="minimal-input"
placeholder="Type here..."
class="border-none bg-transparent p-0 shadow-none focus-visible:ring-0"
/>
</Field>
</template>