Input
The
Features
- Provides three variants:
filled (default),outlined , andunderline for different input styles. - Provides four sizes:
sm ,md (default),lg andauto for different input sizes. - Supports
v-model for easy two-way data binding. - Allows adding icons as prefixes or suffixes to the input field for enhanced user experience.
Usage
Here's basic example of using the
View Code
<template>
<VInput label="Username" placeholder="Enter your username" />
</template>
Variants
The
View Code
<template>
<VInput
outer-class="mb-4"
label="Username"
placeholder="Enter your username"
variant="filled"
/>
<VInput
outer-class="mb-4"
label="Username"
placeholder="Enter your username"
variant="outlined"
/>
<VInput
outer-class="mb-4"
label="Username"
placeholder="Enter your username"
variant="underline"
/>
</template>
Sizes
The
View Code
<template>
<VInput
wrapper-class="mb-4"
label="Username"
placeholder="Enter your username"
size="sm"
/>
<VInput
wrapper-class="mb-4"
label="Username"
placeholder="Enter your username"
size="md"
/>
<VInput
wrapper-class="mb-4"
label="Username"
placeholder="Enter your username"
size="lg"
/>
<VInput
wrapper-class="mb-4"
label="Username"
placeholder="Enter your username"
size="auto"
/>
</template>
Hint
You can add a hint to provide additional information about the input via
View Code
<template>
<VInput
label="Username"
placeholder="Enter your username"
hint="This is a hint"
/>
</template>
Error
You can display an error message when the input value is invalid or there's an error with
View Code
<template>
<VInput
label="Username"
placeholder="Enter your username"
error="This is an error"
/>
</template>
Icons
You can add icons to the input to enhance the user experience with
View Code
<template>
<VInput
label="Username" placeholder="Enter your username"
prepend-icon="ph:person-fill"
append-icon="ph:check-circle-fill"
outer-class="mb-4"
/>
<VInput
label="Email" placeholder="Enter your email"
prepend-icon="ri:at-fill"
/>
</template>
v-model
The
Value:
View Code
<template>
<VInput
v-model="value"
label="Username"
placeholder="Enter your username"
/>
<pre class="mt-4">Value: {{ value }}</pre>
</template>
Input Types
The
Values: { "text": "", "password": "", "email": "", "number": 0, "url": "", "tel": "", "search": "", "date": "", "time": "", "datetime-local": "", "month": "", "week": "", "color": "", "file": "", "range": 0 }
View Code
<script setup lang="ts">
const types = [
'text',
'password',
'email',
'number',
'url',
'tel',
'search',
'date',
'time',
'datetime-local',
'month',
'week',
'color',
'file',
'range',
]
const form = reactive({
'text': '',
'password': '',
'email': '',
'number': 0,
'url': '',
'tel': '',
'search': '',
'date': '',
'time': '',
'datetime-local': '',
'month': '',
'week': '',
'color': '',
'file': '',
'range': 0,
})
</script>
<template>
<VInput
v-for="type in types"
:key="type"
v-model="form[type]"
:type="type"
:label="type"
placeholder="This is placeholder"
outer-class="mb-4"
/>
<pre class="mt-4">Values: {{ form }}</pre>
</template>
Props
The
Prop | Type | Default | Description |
---|---|---|---|
Specifies the style variant for the input. | |||
string | Specifies the type of input (e.g., 'text', 'password', 'number', etc.). | ||
string | - | The label for the input. | |
string | - | The placeholder text to display inside the input when it is empty. | |
string | - | The name of the icon to display before the input element. | |
string | - | CSS class to customize the styling of the prepend icon. | |
string | - | The size of the prepend icon. | |
string | - | The name of the icon to display after the input element. | |
string | - | CSS class to customize the styling of the append icon. | |
string | - | The size of the append icon. | |
string | '20' | The default size for the icons (both prepend and append icons). | |
'auto' | - | ||
string | - | CSS class to customize the styling of the outer container of the input. |
Events
The
Event | Parameters | Description |
---|---|---|
- | Triggered when the user clicks on the prepend area. | |
- | Triggered when the user clicks on the prepend icon. | |
- | Triggered when the user clicks on the append area. | |
- | Triggered when the user clicks on the append icon. |