I have two way binding of property with v-switch input. I'm using v-bind:value as given
<v-switch
v-bind:input-value="tabs"
label="Show Tabs"
@change="(val) => $sync('tabs', !!val)"
/>
The issue is, when the value is supplied from the prop, sometimes switch renders according to the data supplied and sometimes not. v-bind:input-value does the job, but want to understand the underlying problem so that I can contribute to the library itself.