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>
é um componente de UI que permite o usuário escolher entre dois estados.
O estado padrão é false
ou OFF.
<Switch checked="true" />
<Switch>
suporta two-way data binding usando v-model
:
<Switch v-model="itemEnabled" />
nome | tipo | descrição |
---|---|---|
checked | Boolean | Obtém ou define o valor do estado do switch. Valor padrão: false . |
nome | descrição |
---|---|
checkedChange | Emitido quando o valor do switch é alterado. |
Android | iOS |
---|---|
android.widget.Switch | UISwitch |