mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-05-26 08:19:15 +08:00
303 lines
7.2 KiB
Markdown
303 lines
7.2 KiB
Markdown
# Picker
|
||
|
||
### Intro
|
||
|
||
The Picker component is usually used with [Popup](#/en-US/popup) Component.
|
||
|
||
### Install
|
||
|
||
```js
|
||
import { createApp } from 'vue';
|
||
import { Picker } from 'vant';
|
||
|
||
const app = createApp();
|
||
app.use(Picker);
|
||
```
|
||
|
||
## Usage
|
||
|
||
### Basic Usage
|
||
|
||
```html
|
||
<van-picker
|
||
title="Title"
|
||
:columns="columns"
|
||
@confirm="onConfirm"
|
||
@cancel="onCancel"
|
||
@change="onChange"
|
||
/>
|
||
```
|
||
|
||
```js
|
||
import { Toast } from 'vant';
|
||
|
||
export default {
|
||
data() {
|
||
return {
|
||
columns: ['Delaware', 'Florida', 'Georqia', 'Indiana', 'Maine'],
|
||
};
|
||
},
|
||
methods: {
|
||
onConfirm(value, index) {
|
||
Toast(`Value: ${value}, Index: ${index}`);
|
||
},
|
||
onChange(value, index) {
|
||
Toast(`Value: ${value}, Index: ${index}`);
|
||
},
|
||
onCancel() {
|
||
Toast('Cancel');
|
||
},
|
||
},
|
||
};
|
||
```
|
||
|
||
### Default Index
|
||
|
||
```html
|
||
<van-picker title="Title" :columns="columns" :default-index="2" />
|
||
```
|
||
|
||
### Multiple Columns
|
||
|
||
```html
|
||
<van-picker title="Title" :columns="columns" />
|
||
```
|
||
|
||
```js
|
||
export default {
|
||
data() {
|
||
return {
|
||
columns: [
|
||
{
|
||
values: ['Monday', 'Tuesday', 'Wednesday', 'Thusday', 'Friday'],
|
||
defaultIndex: 2,
|
||
},
|
||
{
|
||
values: ['Morging', 'Afternoon', 'Evening'],
|
||
defaultIndex: 1,
|
||
},
|
||
],
|
||
};
|
||
},
|
||
};
|
||
```
|
||
|
||
### Cascade
|
||
|
||
```html
|
||
<van-picker title="Title" :columns="columns" />
|
||
```
|
||
|
||
```js
|
||
export default {
|
||
data() {
|
||
return {
|
||
columns: [
|
||
{
|
||
text: 'Zhejiang',
|
||
children: [
|
||
{
|
||
text: 'Hangzhou',
|
||
children: [{ text: 'Xihu' }, { text: 'Yuhang' }],
|
||
},
|
||
{
|
||
text: 'Wenzhou',
|
||
children: [{ text: 'Lucheng' }, { text: 'Ouhai' }],
|
||
},
|
||
],
|
||
},
|
||
{
|
||
text: 'Fujian',
|
||
children: [
|
||
{
|
||
text: 'Fuzhou',
|
||
children: [{ text: 'Gulou' }, { text: 'Taijiang' }],
|
||
},
|
||
{
|
||
text: 'Xiamen',
|
||
children: [{ text: 'Siming' }, { text: 'Haicang' }],
|
||
},
|
||
],
|
||
},
|
||
],
|
||
};
|
||
},
|
||
};
|
||
```
|
||
|
||
### Disable option
|
||
|
||
```html
|
||
<van-picker :columns="columns" />
|
||
```
|
||
|
||
```js
|
||
export default {
|
||
data() {
|
||
return {
|
||
columns: [
|
||
{ text: 'Delaware', disabled: true },
|
||
{ text: 'Florida' },
|
||
{ text: 'Georqia' },
|
||
],
|
||
};
|
||
},
|
||
};
|
||
```
|
||
|
||
### Set Column Values
|
||
|
||
```html
|
||
<van-picker ref="picker" title="Title" :columns="columns" @change="onChange" />
|
||
```
|
||
|
||
```js
|
||
const states = {
|
||
Group1: ['Delaware', 'Florida', 'Georqia', 'Indiana', 'Maine'],
|
||
Group2: ['Alabama', 'Kansas', 'Louisiana', 'Texas'],
|
||
};
|
||
|
||
export default {
|
||
data() {
|
||
return {
|
||
columns: [{ values: Object.keys(states) }, { values: states.Group1 }],
|
||
};
|
||
},
|
||
methods: {
|
||
onChange(values) {
|
||
this.$refs.picker.setColumnValues(1, states[values[0]]);
|
||
},
|
||
},
|
||
};
|
||
```
|
||
|
||
### Loading
|
||
|
||
When Picker columns data is acquired asynchronously, use `loading` prop to show loading prompt
|
||
|
||
```html
|
||
<van-picker title="Title" :columns="columns" :loading="loading" />
|
||
```
|
||
|
||
```js
|
||
export default {
|
||
data() {
|
||
return {
|
||
columns: [],
|
||
loading: true,
|
||
};
|
||
},
|
||
created() {
|
||
setTimeout(() => {
|
||
this.loading = false;
|
||
this.columns = ['Option'];
|
||
}, 1000);
|
||
},
|
||
};
|
||
```
|
||
|
||
### With Popup
|
||
|
||
```html
|
||
<van-field
|
||
readonly
|
||
clickable
|
||
label="City"
|
||
:value="value"
|
||
placeholder="Choose City"
|
||
@click="showPicker = true"
|
||
/>
|
||
<van-popup v-model:show="showPicker" round position="bottom">
|
||
<van-picker
|
||
title="Title"
|
||
:columns="columns"
|
||
@cancel="showPicker = false"
|
||
@confirm="onConfirm"
|
||
/>
|
||
</van-popup>
|
||
```
|
||
|
||
```js
|
||
export default {
|
||
data() {
|
||
return {
|
||
value: '',
|
||
showPicker: false,
|
||
columns: ['Delaware', 'Florida', 'Georqia', 'Indiana', 'Maine'],
|
||
};
|
||
},
|
||
methods: {
|
||
onConfirm(value) {
|
||
this.value = value;
|
||
this.showPicker = false;
|
||
},
|
||
},
|
||
};
|
||
```
|
||
|
||
## API
|
||
|
||
### Props
|
||
|
||
| Attribute | Description | Type | Default |
|
||
| --- | --- | --- | --- |
|
||
| columns | Columns data | _Column[]_ | `[]` |
|
||
| title | Toolbar title | _string_ | - |
|
||
| confirm-button-text | Text of confirm button | _string_ | `Confirm` |
|
||
| cancel-button-text | Text of cancel button | _string_ | `Cancel` |
|
||
| value-key | Key of option text | _string_ | `text` |
|
||
| toolbar-position | Toolbar position, cat be set to `bottom` | _string_ | `top` |
|
||
| loading | Whether to show loading prompt | _boolean_ | `false` |
|
||
| show-toolbar | Whether to show toolbar | _boolean_ | `true` |
|
||
| allow-html | Whether to allow HTML in option text | _boolean_ | `false` |
|
||
| default-index | Default value index of single column picker | _number \| string_ | `0` |
|
||
| item-height `v2.8.6` | Option height, supports `px` `vw` `rem` unit, default `px` | _number \| string_ | `44` |
|
||
| visible-item-count | Count of visible columns | _number \| string_ | `6` |
|
||
| swipe-duration | Duration of the momentum animation,unit `ms` | _number \| string_ | `1000` |
|
||
|
||
### Events
|
||
|
||
Picker events will pass different parameters according to the columns are single or multiple
|
||
|
||
| Event | Description | Arguments |
|
||
| --- | --- | --- |
|
||
| confirm | Triggered when click confirm button | Single column:current value,current index<br>Multiple columns:current values,current indexes |
|
||
| cancel | Triggered when click cancel button | Single column:current value,current index<br>Multiple columns:current values,current indexes |
|
||
| change | Triggered when current option changed | Single column:Picker instance, current value,current index<br>Multiple columns:Picker instance, current values,column index |
|
||
|
||
### Slots
|
||
|
||
| Name | Description |
|
||
| -------------- | ---------------------------- |
|
||
| default | Custom toolbar content |
|
||
| title | Custom title |
|
||
| columns-top | Custom content above columns |
|
||
| columns-bottom | Custom content below columns |
|
||
|
||
### Data Structure of Column
|
||
|
||
| Key | Description | Type |
|
||
| ----------------- | ------------------------- | ---------- |
|
||
| values | Value of column | _string[]_ |
|
||
| defaultIndex | Default value index | _number_ |
|
||
| className | ClassName for this column | _any_ |
|
||
| children `v2.4.5` | Cascade children | _Column_ |
|
||
|
||
### Methods
|
||
|
||
Use [ref](https://vuejs.org/v2/api/#ref) to get Picker instance and call instance methods
|
||
|
||
| Name | Description | Attribute | Return value |
|
||
| --- | --- | --- | --- |
|
||
| getValues | Get current values of all columns | - | values |
|
||
| setValues | Set current values of all columns | values | - |
|
||
| getIndexes | Get current indexes of all columns | - | indexes |
|
||
| setIndexes | Set current indexes of all columns | indexes | - |
|
||
| getColumnValue | Get current value of the column | columnIndex | value |
|
||
| setColumnValue | Set current value of the column | columnIndex, value | - |
|
||
| getColumnIndex | Get current index of the column | columnIndex | optionIndex |
|
||
| setColumnIndex | Set current index of the column | columnIndex, optionIndex | - |
|
||
| getColumnValues | Get columns data of the column | columnIndex | values |
|
||
| setColumnValues | Set columns data of the column | columnIndex, values | - |
|
||
| confirm `v2.4.0` | Stop scrolling and emit confirm event | - | - |
|