Skip to content

Input

Input component for text entry.

Basic Usage

The v-model attribute binds the input value.

html
<wd-input v-model="value" placeholder="Please enter content"></wd-input>
typescript
import { reactive, toRefs } from 'vue'

export default {
  setup() {
    const state = reactive({
      value: ''
    })

    return {
      ...toRefs(state)
    }
  }
}

Label

Set the label attribute to display the label on the left side of the input.

html
<wd-input v-model="value" label="Label"></wd-input>

Label Width

Set the label-width attribute to customize the width of the label.

html
<wd-input v-model="value" label="Label" label-width="100px"></wd-input>

Input Type

Set the type attribute to define the input type, supporting all native input types.

html
<wd-input v-model="value" label="Text" type="text"></wd-input>
<wd-input v-model="value" label="Password" type="password"></wd-input>
<wd-input v-model="value" label="Number" type="number"></wd-input>
<wd-input v-model="value" label="Phone" type="tel"></wd-input>

Disabled

Set the disabled attribute to disable the input.

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

Read Only

Set the readonly attribute to make the input read-only.

html
<wd-input v-model="value" label="Read Only" readonly></wd-input>

Show Clear Button

Set the clearable attribute to show a clear button when the input has content.

html
<wd-input v-model="value" label="Clear Button" clearable></wd-input>

Show Password

Set the show-password attribute to show a button to toggle password visibility when the input type is password.

html
<wd-input v-model="value" label="Password" type="password" show-password></wd-input>

Prefix Icon

Set the prefix-icon attribute to display an icon at the beginning of the input.

html
<wd-input v-model="value" label="Prefix Icon" prefix-icon="search"></wd-input>

Suffix Icon

Set the suffix-icon attribute to display an icon at the end of the input.

html
<wd-input v-model="value" label="Suffix Icon" suffix-icon="search"></wd-input>

Custom Icon Click Event

Set the on-click-prefix-icon and on-click-suffix-icon attributes to handle icon click events.

html
<wd-input
  v-model="value"
  label="Click Icon"
  prefix-icon="search"
  suffix-icon="search"
  @click-prefix-icon="handleClickIcon"
  @click-suffix-icon="handleClickIcon"
></wd-input>
typescript
import { reactive, toRefs } from 'vue'

export default {
  setup() {
    const state = reactive({
      value: ''
    })

    const handleClickIcon = () => {
      console.log('click icon')
    }

    return {
      ...toRefs(state),
      handleClickIcon
    }
  }
}

Input Size

Set the size attribute to customize the size of the input, supporting 'large' and 'small'.

html
<wd-input v-model="value" label="Large" size="large"></wd-input>
<wd-input v-model="value" label="Default"></wd-input>
<wd-input v-model="value" label="Small" size="small"></wd-input>

Input Length Limit

Set the maxlength attribute to limit the maximum input length.

html
<wd-input v-model="value" label="Length Limit" maxlength="10"></wd-input>

Input Alignment

Set the input-align attribute to customize the alignment of the input text, supporting 'left', 'center', and 'right'.

html
<wd-input v-model="value" label="Left" input-align="left"></wd-input>
<wd-input v-model="value" label="Center" input-align="center"></wd-input>
<wd-input v-model="value" label="Right" input-align="right"></wd-input>

Cell Style

Set the cell attribute to display the input in cell style.

html
<wd-input v-model="value" label="Cell Style" cell></wd-input>

Custom Label

Use the label slot to customize the label content.

html
<wd-input v-model="value">
  <template #label>
    <view style="display: inline-flex; align-items: center;">
      <view>Custom Label</view>
      <wd-icon name="question-fill" style="margin-left: 4px; color: #4D80F0;"></wd-icon>
    </view>
  </template>
</wd-input>

Custom Input

Use the prefix and suffix slots to customize the content before and after the input.

html
<wd-input v-model="value" label="Custom Input">
  <template #prefix>
    <view style="padding: 0 10px;">Prefix</view>
  </template>
  <template #suffix>
    <view style="padding: 0 10px;">Suffix</view>
  </template>
</wd-input>

Error Status

Set the error attribute to display the input in error status.

html
<wd-input v-model="value" label="Error" error></wd-input>

Error Message

Set the error-message attribute to display an error message below the input.

html
<wd-input v-model="value" label="Error Message" error-message="Error message"></wd-input>

Attributes

AttributeDescriptionTypeDefaultVersion
v-modelInput valuestring / number--
labelInput labelstring--
placeholderInput placeholderstring--
typeInput typestringtext-
disabledWhether to disable the inputbooleanfalse-
readonlyWhether the input is read-onlybooleanfalse-
clearableWhether to show the clear buttonbooleanfalse-
show-passwordWhether to show the password toggle buttonbooleanfalse-
prefix-iconPrefix icon namestring--
suffix-iconSuffix icon namestring--
sizeInput size, can be 'large' or 'small'string--
errorWhether to show error statusbooleanfalse-
error-messageError messagestring--
nameNative name attributestring--
maxlengthMaximum input lengthstring / number--
input-alignInput text alignment, can be 'left', 'center', or 'right'stringleft-
label-widthLabel widthstring33%-
cellWhether to display in cell stylebooleanfalse-
requiredWhether to display the required asteriskbooleanfalse-
centerWhether to vertically center the contentbooleanfalse-
active-colorActive color when focusedstring--
adjust-positionWhether to adjust the position when the keyboard is displayedbooleantrue-
cursor-spacingThe distance from the cursor to the keyboard when focusednumber0-
auto-focusWhether to auto focusbooleanfalse-
always-embedWhether to always embed the input in a native input elementbooleanfalse-
confirm-typeThe text of the confirm button on the keyboard, can be 'send', 'search', 'next', 'go', 'done'stringdone-
confirm-holdWhether to keep the keyboard displayed after the confirm button is pressedbooleanfalse-
cursorThe initial position of the cursornumber--
selection-startThe start position of the selectionnumber-1-
selection-endThe end position of the selectionnumber-1-
hold-keyboardWhether to keep the keyboard displayedbooleanfalse-
safe-padding-bottomWhether to enable bottom safe area paddingbooleanfalse-

Events

Event NameDescriptionParametersVersion
changeTriggered when the input value changesvalue: input value-
focusTriggered when the input is focusedevent: Event-
blurTriggered when the input loses focusevent: Event-
clearTriggered when the clear button is clicked--
click-prefix-iconTriggered when the prefix icon is clickedevent: Event-
click-suffix-iconTriggered when the suffix icon is clickedevent: Event-
confirmTriggered when the confirm button on the keyboard is pressedevent: Event-

Slots

NameDescriptionVersion
labelCustom label-
prefixContent before the input-
suffixContent after the input-

External Style Classes

Class NameDescriptionVersion
custom-classRoot node custom class-
custom-label-classLabel custom class-
custom-input-classInput custom class-

Source Code

Documentation
Component

Released under the MIT License.

Released under the MIT License.