neverland a7d8379514 [Doc] english document of all action components (#260)
* [bugfix] CouponList always show empty info

* [bugfix] add click feedback of buttons in components

* [Doc] add custom theme document

* [new feature] Notice bar support more props

* [bugfix] PullRefresh test cases

* [bugfix] unused NoticeBar style

* [bugfix] Swipe width calc error

* [Doc] english document of all action components
2017-10-26 08:38:13 -05:00

3.5 KiB

Picker

Install

import { Picker } from 'vant';

Vue.component(Picker.name, Picker);

Usage

Basic Usage

:::demo Basic Usage

<van-picker :columns="pickerColumns" @change="handlePickerChange"></van-picker>
const states = {
  'Group1': ['Delaware', 'Florida', 'Georqia', 'Indiana', 'Maine'],
  'Group2': ['Alabama', 'Kansas', 'Louisiana', 'Texas']
};

export default {
  data() {
    return {
      pickerColumns: [
        {
          values: Object.keys(states),
          className: 'column1'
        },
        {
          values: states.Group1,
          className: 'column2'
        }
      ]
    };
  },

  methods: {
    handlePickerChange(picker, values) {
      picker.setColumnValues(1, citys[values[0]]);
    }
  }
};

:::

Picker with toolbar

:::demo Picker with toolbar

<van-picker
  show-toolbar
  :title="title"
  :columns="pickerColumns"
  @change="handlePickerChange"
  @cancel="handlePickerCancel"
  @confirm="handlePickerConfirm"
></van-picker>
const states = {
  'Group1': ['Delaware', 'Florida', 'Georqia', 'Indiana', 'Maine'],
  'Group2': ['Alabama', 'Kansas', 'Louisiana', 'Texas']
};

export default {
  data() {
    return {
      title: 'Title',
      pickerColumns: [
        {
          values: Object.keys(states),
          className: 'column1'
        },
        {
          values: states.Group1,
          className: 'column2'
        }
      ]
    };
  },

  methods: {
    handlePickerChange(picker, values) {
      picker.setColumnValues(1, citys[values[0]]);
    },
    handlePickerCancel() {
      Toast('Cancel');
    },
    handlePickerConfirm() {
      Toast('Confirm');
    }
  }
};

:::

API

Attribute Description Type Default Accepted Values
visibileColumnCount Count of columns to show Number 5 -
itemHeight Item height Number 44 -
columns Columns data Array - -
showToolbar Whether to show toolbar Boolean true -
title Toolbar title String - -

Data struct of columns

key Description
values Value of column
defaultIndex Default value index
className ClassName for this column

Picker instance

The first argument of change event's callback function is a picker instance with some methods

Method Description
getColumnValue(index) get current value of the column
setColumnValue(index, value) set current value of the column
getColumnValues(index) get all values of the column
setColumnValues(index, values) set all values of the column
getValues() get current values of all columns
setValues(values) set current values of all columns