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" />

Props

名前説明
itemsArray<String>オプションとして表示される要素を取得・設定します。
selectedIndexNumber現在選択されている要素のインデクスを取得・設定します。

Events

名前説明
selectedIndexChangeEmitted when the currently selected option (index) changes.

Native component

AndroidiOS
android.widget.NumberPickerUIPickerView
Contributors