Input 输入框
通过鼠标或键盘输入字符
基础文本框
<template>
<vk-input v-model="test" placeholder="基础文本框,请输入" />
<span>{{ test }}</span>
</template>
<script setup>
import { ref } from 'vue';
const test = ref('');
</script>
禁用文本框
通过 disabled
属性指定是否禁用 input 组件
<template>
<vk-input v-model="test" disabled />
</template>
<script setup>
import { ref } from 'vue';
const test = ref('some text');
</script>
尺寸
使用 size
属性改变输入框大小。 除了默认大小外,还有另外两个选项: large
, small
。
<template>
<div class="size-holder">
<vk-input v-model="test" placeholder="大的 Input" size="large"></vk-input>
<vk-input v-model="test" placeholder="普通的 Input"></vk-input>
<vk-input v-model="test" placeholder="小的 Input" size="small"></vk-input>
</div>
</template>
<script setup>
import { ref } from 'vue';
const test = ref('');
</script>
<style scoped>
.size-holder {
display: flex;
align-items: center;
}
</style>
复合型输入框
可以在输入框前置或后置一个元素,通常是标签或按钮。可以使用 prepend
和 append
插槽。 要在输入框中添加前后元素,可以使用 prefix
和 suffix
插槽。
Https://
.com
<template>
<vk-input v-model="test" placeholder="prepend append">
<template #prepend>Https://</template>
<template #append>.com</template>
</vk-input>
<vk-input v-model="test" placeholder="prefix suffix">
<template #prefix>
<vk-icon icon="fa-user" />
</template>
<template #suffix>
<vk-icon icon="fa-user" />
</template>
</vk-input>
</template>
<script setup>
import { ref } from 'vue';
const test = ref('');
</script>
Textarea
用于输入多行文本信息可缩放的输入框。 添加 type="textarea"
属性来将 input
元素转换为原生的 textarea
元素。
<template>
<vk-input
v-model="test"
placeholder="可以是一个 Textarea"
type="textarea"
></vk-input>
</template>
<script setup>
import { ref } from 'vue';
const test = ref('');
</script>
密码文本框
使用 show-password
属性即可得到一个可切换显示隐藏的密码框
<template>
<vk-input v-model="test" placeholder="密码文本框,可以切换" showPassword />
</template>
<script setup>
import { ref } from 'vue';
const test = ref('');
</script>
清空文本框
使用 clearable
属性即可得到一个可一键清空的输入框
<template>
<vk-input v-model="test" clearable placeholder="输入字符以后可以点击清空" />
</template>
<script setup>
import { ref } from 'vue';
const test = ref('');
</script>
API
属性
属性名 | 说明 | 类型 | 默认值 |
---|---|---|---|
model-value / v-model | 绑定值 | string | - |
size | 输入框尺寸,只在 type 不为 'textarea' 时有效 | large | small | - |
type | 类型 | string | text |
disabled | 是否禁用 | boolean | false |
placeholder | 输入框占位文本 | string | — |
autofocus | 原生属性,自动获取焦点 | boolean | false |
show-password | 是否显示切换密码图标 | boolean | false |
clearable | 是否显示清除按钮,只有当 type 不是 textarea 时生效 | boolean | false |
readonly | 原生 readonly 属性,是否只读 | boolean | false |
autocomplete | 原生 autocomplete 属性 | string | off |
form | 原生属性 | string | - |
事件
事件名 | 描述 | 类型 |
---|---|---|
blur | 当选择器的输入框失去焦点时触发 | (e: FocusEvent) => void |
focus | 当选择器的输入框获得焦点时触发 | (e: FocusEvent) => void |
input | 在 Input 值改变时触发 | (value: string) => void |
change | 仅当 modelValue 改变时,当输入框失去焦点时触发 | (value: string) => void |
clear | 在点击由 clearable 属性生成的清空按钮时触发 | () => void |
插槽
插槽名 | 说明 |
---|---|
prefix | 输入框头部内容,只对非 type="textarea" 有效 |
suffix | 输入框尾部内容,只对非 type="textarea" 有效 |
prepend | 输入框前置内容,只对非 type="textarea" 有效 |
append | 输入框后置内容,只对非 type="textarea" 有效 |
实例
名称 | 说明 | 类型 |
---|---|---|
ref | HTML 元素 input 或 textarea | Ref<HTMLInputElement | HTMLTextAreaElement> |