Switch
- <vuestic-switch v-model="isMale">
- <span slot="trueTitle">Male</span>
- <span slot="falseTitle">Female</span>
- </vuestic-switch>
Props
v-model
- Boolean - model of your select
Simply addslot="trueTitle"
attribute to span which should returntrue
in your model after click. Otherwise addslot="falseTitle"
attribute.