ListPicker

This is an overview of the most common usage of ListPicker. For more information about the available properties, methods, or events, head over to the complete API documentation for ListPicker.

<ListPicker> 是一个UI组件,允许用户从预配置列表中选择一个值。


<ListPicker :items="listOfItems" selectedIndex="0"
    @selectedIndexChange="selectedIndexChanged" />

<ListPicker> 使用提供双向数据绑定 v-model

<ListPicker :items="listOfItems" v-model="selectedItem" />

道具

名称类型描述
itemsArray<String>获取或设置列表选择器中显示为选项的项。
selectedIndexNumber获取或设置当前所选项的索引。

活动

名称描述
selectedIndexChange当前选定的选项(索引)更改时发出。

原生组件

AndroidiOS
android.widget.NumberPickerUIPickerView
Contributors