7.9 KiB
Raw Blame History

Input 输入框

基本用法

可以通过 v-model 双向绑定输入框的值,通过 placeholder 设置占位提示文字。

const value = ref<string>('')
function handleChange(event) {
  console.log(event)
}
<wd-input type="text" v-model="value" placeholder="请输入用户名" @change="handleChange" />

禁用

设置 disabled 属性。

<wd-input v-model="value" disabled />

只读

设置 readonly 属性。

<wd-input v-model="value" readonly />

清空按钮

设置 clearable 属性。

<wd-input v-model="value" clearable @change="handleChange"/>

密码输入框

设置 show-password 属性。

<wd-input v-model="value" clearable show-password @change="handleChange"/>

前后icon

设置前置icon prefix-icon设置后置icon suffix-iconicon 为 icon 章节中的图标,如果没有你需要的图标,则使用 prefixsuffix 插槽进行自定义插入。

<wd-input
  v-model="value"
  prefix-icon="dong"
  suffix-icon="list"
  @change="handleChange"/>

限制字数输入

设置 maxlength 属性,如果要显示字数限制,设置 show-word-limit 属性。

<wd-input v-model="value" :maxlength="20" show-word-limit @change="handleChange"/>

文本域

设置 type 为 'textarea`。

:::warning 当 wd-inputtype 为 'textarea' ,并嵌入 wd-message-boxwd-popupwd-action-sheet 这类弹层组件时textarea 的 placeholder 样式会失效,需要手动给 wd-message-boxwd-popupwd-action-sheet 组件设置 :lazy-render="false" 属性textarea 原生组件在这块实现有些问题,对于页面非立即渲染的 textarea 无法成功设置 placeholder 样式 :::

<wd-input type="textarea" v-model="value" placeholder="请输入..." @change="handleChange"/>

设置清空,字数限制。

<wd-input
  type="textarea"
  v-model="value"
  placeholder="请输入..."
  :maxlength="120"
  clearable
  show-word-limit
  @change="handleChange"/>

也可以设置auto-height使高度自增加。

<wd-input v-model="value" auto-height @change="handleChange" clearable/>

设置label标题

设置 label 标题,可以和 cell-group 组合使用,形成 cell 展示类型。可以通过 label-width 设置标题宽度,默认为 '33%'。

<wd-input type="text" label="基本用法" v-model="value" placeholder="请输入..." />

必填样式

设置了 label 的情况下,设置 required 属性,展示必填样式。

<wd-input v-model="value" placeholder="请输入..." label="必填" required></wd-input>

输入框大小

通过设置 size 修改输入框大小,将 size 设置为 'large' 时字号为 16px。

<wd-input type="text" label="基本用法" size="large" v-model="value" placeholder="请输入..." />

错误状态

设置 error 属性,输入框的值显示为红色。

<wd-input type="text" v-model="value" placeholder="请输入用户名" error />

垂直居中

当设置 label 标题时,默认为顶部居中,设置 center 属性可以使标题和输入框垂直居中。

<wd-input type="text" label="基本用法" v-model="value" center />

Attributes

参数 说明 类型 可选值 默认值 最低版本
type 类型 string text / textarea / number / digit / idcard text -
v-model 绑定值 string / number - - -
placeholder 占位文本 string - 请输入... -
clearable 显示清空按钮 boolean - false -
maxlength 原生属性,最大长度 string - - -
showPassword 显示为密码框 boolean - false -
disabled 原生属性,禁用 boolean - false -
readonly 只读 boolean - false -
prefixIcon 前置图标icon组件中的图标类名 string - - -
suffixIcon 后置图标icon组件中的图标类名 string - - -
showWordLimit 显示字数限制,需要同时设置 maxlength boolean - false -
confirm-type 设置键盘右下角按钮的文字仅在type='text'时生效 string done / go / next / search / send done -
placeholderStyle 原生属性,指定 placeholder 的样式目前仅支持color,font-size和font-weight string - - -
placeholderClass textarea指定 placeholder 的样式类 string - textarea-placeholder -
focus 原生属性,获取焦点 boolean - false -
cursorSpacing 原生属性指定光标与键盘的距离。取textarea距离底部的距离和cursor-spacing指定的距离的最小值作为光标与键盘的距离 number - 0 -
fixed textarea原生属性如果 textarea 是在一个 position:fixed 的区域,需要显示指定属性 fixed 为 true boolean - false -
cursor 原生属性指定focus时的光标位置 number - -1 -
showConfirmBar 原生属性,是否显示键盘上方带有”完成“按钮那一栏 boolean - true -
selectionStart 原生属性光标起始位置自动聚集时有效需与selection-end搭配使用 number - -1 -
selectionEnd 原生属性光标结束位置自动聚集时有效需与selection-start搭配使用 number - -1 -
adjustPosition 原生属性,键盘弹起时,是否自动上推页面 boolean - true -
autoHeight textarea原生属性textarea 行数自适应从1行开始显示 string - - -
label 设置左侧标题 string - - -
size 设置输入框大小 string - - -
error 设置输入框错误状态,错误状态时为红色 boolean - false -
center 当有label属性时设置标题和输入框垂直居中默认为顶部居中 boolean - false -
label-width 设置左侧标题宽度 string - 33% -
use-label-slot 使用 label 插槽 boolean - false -
use-suffix-slot 使用 后置图标 插槽 boolean - false -
use-prefix-slot 使用 前置图标 插槽 boolean - false -
required cell 类型下必填样式 boolean - false -
name form 表单中的字段名 string - - -
no-border 非 cell 类型下是否隐藏下划线 boolean - false -

Events

事件名称 说明 参数 最低版本
input 监听输入框input事件 {value, cursor, keyCode} -
focus 监听输入框focus事件 { value, height }, height 为键盘高度 -
blur 监听输入框blur事件 { value, cursor }仅在type="textarea"时存在cursor -
change 监听输入框修改事件 { value } -
clear 监听输入框清空按钮事件 - -
linechange 监听输入框行数变化(仅限textarea) { height: 0, heightRpx: 0, lineCount: 0 } -
confirm 点击完成时, 触发 confirm 事件 { value } -
keyboardheightchange 键盘高度发生变化的时候触发此事件 { height, duration } -
clickprefixicon 点击前置图标时触发 - -
clicksuffixicon 点击后置图标时触发 - -

Slot

:::tip 提示 使用插槽需要配置是否启用对应的插槽,分别对应use-label-slotuse-suffix-slotuse-prefix-slot。 :::

name 说明 最低版本
label 左侧标题插槽 -
prefix 前置插槽 -
suffix 后置插槽 -

外部样式类

类名 说明 最低版本
custom-class 根结点样式 -
custom-textarea-container-class textarea 容器外部自定义样式 -
custom-textarea-class textarea 外部自定义样式 -
custom-input-class input 外部自定义样式 -
custom-label-class label 外部自定义样式 -