mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-09-09 12:13:22 +08:00
290 lines
7.0 KiB
Markdown
290 lines
7.0 KiB
Markdown
# Field
|
||
|
||
### Install
|
||
|
||
```js
|
||
import Vue from 'vue';
|
||
import { Field } from 'vant';
|
||
|
||
Vue.use(Field);
|
||
```
|
||
|
||
## Usage
|
||
|
||
### Basic Usage
|
||
|
||
The value of field is bound with v-model.
|
||
|
||
```html
|
||
<van-cell-group>
|
||
<van-field v-model="value" label="Label" placeholder="Text" />
|
||
</van-cell-group>
|
||
```
|
||
|
||
```js
|
||
export default {
|
||
data() {
|
||
return {
|
||
value: '',
|
||
};
|
||
},
|
||
};
|
||
```
|
||
|
||
### Custom Type
|
||
|
||
Use `type` prop to custom different type fields.
|
||
|
||
```html
|
||
<van-field v-model="text" label="Text" />
|
||
<van-field v-model="tel" type="tel" label="Phone" />
|
||
<van-field v-model="digit" type="digit" label="Digit" />
|
||
<van-field v-model="number" type="number" label="Number" />
|
||
<van-field v-model="password" type="password" label="Password" />
|
||
```
|
||
|
||
```js
|
||
export default {
|
||
data() {
|
||
return {
|
||
tel: '',
|
||
text: '',
|
||
digit: '',
|
||
number: '',
|
||
password: '',
|
||
};
|
||
},
|
||
};
|
||
```
|
||
|
||
### Disabled
|
||
|
||
```html
|
||
<van-cell-group>
|
||
<van-field label="Text" value="Input Readonly" readonly />
|
||
<van-field label="Text" value="Input Disabled" disabled />
|
||
</van-cell-group>
|
||
```
|
||
|
||
### Show Icon
|
||
|
||
```html
|
||
<van-cell-group>
|
||
<van-field
|
||
v-model="value1"
|
||
label="Text"
|
||
left-icon="smile-o"
|
||
right-icon="warning-o"
|
||
placeholder="Show Icon"
|
||
/>
|
||
<van-field
|
||
v-model="value2"
|
||
clearable
|
||
label="Text"
|
||
left-icon="music-o"
|
||
placeholder="Show Clear Icon"
|
||
/>
|
||
</van-cell-group>
|
||
```
|
||
|
||
```js
|
||
export default {
|
||
data() {
|
||
return {
|
||
value1: '',
|
||
value2: '123',
|
||
};
|
||
},
|
||
};
|
||
```
|
||
|
||
### Error Info
|
||
|
||
Use `error` or `error-message` to show error info.
|
||
|
||
```html
|
||
<van-cell-group>
|
||
<van-field
|
||
v-model="username"
|
||
error
|
||
required
|
||
label="Username"
|
||
placeholder="Username"
|
||
/>
|
||
<van-field
|
||
v-model="phone"
|
||
required
|
||
label="Phone"
|
||
placeholder="Phone"
|
||
error-message="Invalid phone"
|
||
/>
|
||
</van-cell-group>
|
||
```
|
||
|
||
### Insert Button
|
||
|
||
Use button slot to insert button.
|
||
|
||
```html
|
||
<van-field v-model="sms" center clearable label="SMS" placeholder="SMS">
|
||
<template #button>
|
||
<van-button size="small" type="primary">Send SMS</van-button>
|
||
</template>
|
||
</van-field>
|
||
```
|
||
|
||
### Format Value
|
||
|
||
Use `formatter` prop to format the input value.
|
||
|
||
```html
|
||
<van-field
|
||
v-model="value1"
|
||
label="Text"
|
||
:formatter="formatter"
|
||
placeholder="Format On Change"
|
||
/>
|
||
<van-field
|
||
v-model="value2"
|
||
label="Text"
|
||
:formatter="formatter"
|
||
format-trigger="onBlur"
|
||
placeholder="Format On Blur"
|
||
/>
|
||
```
|
||
|
||
```js
|
||
export default {
|
||
data() {
|
||
return {
|
||
value1: '',
|
||
value2: '',
|
||
};
|
||
},
|
||
methods: {
|
||
formatter(value) {
|
||
return value.replace(/\d/g, '');
|
||
},
|
||
},
|
||
};
|
||
```
|
||
|
||
### Auto Resize
|
||
|
||
Textarea Field can be auto resize when has `autosize` prop.
|
||
|
||
```html
|
||
<van-field
|
||
v-model="message"
|
||
label="Message"
|
||
type="textarea"
|
||
placeholder="Message"
|
||
rows="1"
|
||
autosize
|
||
/>
|
||
```
|
||
|
||
### Show Word Limit
|
||
|
||
```html
|
||
<van-field
|
||
v-model="message"
|
||
rows="2"
|
||
autosize
|
||
label="Message"
|
||
type="textarea"
|
||
maxlength="50"
|
||
placeholder="Message"
|
||
show-word-limit
|
||
/>
|
||
```
|
||
|
||
### Input Align
|
||
|
||
Use `input-align` prop to align the input value.
|
||
|
||
```html
|
||
<van-field
|
||
v-model="value"
|
||
label="Text"
|
||
placeholder="Input Align Right"
|
||
input-align="right"
|
||
/>
|
||
```
|
||
|
||
## API
|
||
|
||
### Props
|
||
|
||
| Attribute | Description | Type | Default |
|
||
| --- | --- | --- | --- |
|
||
| v-model (value) | Field value | _number \| string_ | - |
|
||
| label | Field label | _string_ | - |
|
||
| name `v2.5.0` | Name | _string_ | - |
|
||
| type | Input type, can be set to `tel` `digit`<br>`number` `textarea` `password` | _string_ | `text` |
|
||
| size | Size,can be set to `large` | _string_ | - |
|
||
| maxlength | Max length of value | _number \| string_ | - |
|
||
| placeholder | Input placeholder | _string_ | - |
|
||
| border | Whether to show inner border | _boolean_ | `true` |
|
||
| disabled | Whether to disable field | _boolean_ | `false` |
|
||
| readonly | Whether to be readonly | _boolean_ | `false` |
|
||
| colon `v2.7.2` | Whether to display colon after label | _boolean_ | `false` |
|
||
| required | Whether to show required mark | _boolean_ | `false` |
|
||
| center | Whether to center content vertically | _boolean_ | `true` |
|
||
| clearable | Whether to be clearable | _boolean_ | `false` |
|
||
| clear-trigger `v2.9.1` | When to display the clear icon, `always` means to display the icon when value is not empty, `focus` means to display the icon when input is focused | _string_ | `focus` |
|
||
| clickable | Whether to show click feedback when clicked | _boolean_ | `false` |
|
||
| is-link | Whether to show link icon | _boolean_ | `false` |
|
||
| autofocus | Whether to auto focus, unsupported in iOS | _boolean_ | `false` |
|
||
| show-word-limit | Whether to show word limit, need to set the `maxlength` prop | _boolean_ | `false` |
|
||
| error | Whether to show error info | _boolean_ | `false` |
|
||
| error-message | Error message | _string_ | - |
|
||
| formatter `v2.4.2` | Input value formatter | _Function_ | - |
|
||
| format-trigger `v2.8.7` | When to format value,can be set to `onBlur` | _string_ | `onChange` |
|
||
| arrow-direction | Can be set to `left` `up` `down` | _string_ | `right` |
|
||
| label-class | Label className | _any_ | - |
|
||
| label-width | Label width | _number \| string_ | `6.2em` |
|
||
| label-align | Label align, can be set to `center` `right` | _string_ | `left` |
|
||
| input-align | Input align, can be set to `center` `right` | _string_ | `left` |
|
||
| error-message-align | Error message align, can be set to `center` `right` | _string_ | `left` |
|
||
| autosize | Textarea auto resize,can accpet an object,<br>e.g. { maxHeight: 100, minHeight: 50 } | _boolean \| object_ | `false` |
|
||
| left-icon | Left side icon name | _string_ | - |
|
||
| right-icon | Right side icon name | _string_ | - |
|
||
| icon-prefix `v2.5.3` | Icon className prefix | _string_ | `van-icon` |
|
||
| rules `v2.5.0` | Form validation rules | _Rule[]_ | - |
|
||
|
||
### Events
|
||
|
||
Field support all native events of input tag
|
||
|
||
| Event | Description | Parameters |
|
||
| --- | --- | --- |
|
||
| input | Triggered when input value changed | _value: string_ |
|
||
| focus | Triggered when input gets focus | _event: Event_ |
|
||
| blur | Triggered when input loses focus | _event: Event_ |
|
||
| clear | Triggered when click clear icon | _event: Event_ |
|
||
| click | Triggered when click Field | _event: Event_ |
|
||
| click-input `v2.8.1` | Triggered when click input | _event: Event_ |
|
||
| click-left-icon | Triggered when click the left icon of Field | _event: Event_ |
|
||
| click-right-icon | Triggered when click the right icon of Field | _event: Event_ |
|
||
|
||
### Methods
|
||
|
||
Use [ref](https://vuejs.org/v2/api/#ref) to get Field instance and call instance methods.
|
||
|
||
| Name | Description | Attribute | Return value |
|
||
| ----- | ------------------- | --------- | ------------ |
|
||
| focus | Trigger input focus | - | - |
|
||
| blur | Trigger input blur | - | - |
|
||
|
||
### Slots
|
||
|
||
| Name | Description |
|
||
| -------------- | --------------------------- |
|
||
| label | Custom label |
|
||
| input | Custom input |
|
||
| left-icon | Custom left icon |
|
||
| right-icon | Custom right icon |
|
||
| button | Insert button |
|
||
| extra `v2.8.2` | Custom content on the right |
|