Switch

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

<Switch>は2つの状態を交互に切り替えるためのUIコンポーネントです。

デフォルトの状態はfalseもしくはOFFです。


<Switch checked="true" />

<Switch>v-modelによる双方向バインディングを提供しています。

<Switch v-model="itemEnabled" />

Props

名前説明
checkedBooleanスイッチで選択されている値を取得・設定します。
デフォルトの値: false.

Events

名前説明
checkedChangeスイッチで選択されている値が変更された時に発火します。

Native component

AndroidiOS
android.widget.SwitchUISwitch
Contributors