I'm making my first script using Vue, and I think I love it ;)
I have a problem with the bootstrap switch: http://www.bootstrap-switch.org/
It never triggers the v-on:change on this component:
Here is my generated code
<div class="checkbox-switch">
<label>
<input name="isTeam" type="hidden" value="0" id="isTeam">
<input v-model="isTeam" v-on:change="getCategoryName" class="switch" data-on-text="Si" data-off-text="No" name="isTeam" type="checkbox" value="1" id="isTeam">
</label>
</div>
On all others fields, v-on:change works fine!
Any Idea how to trigger it???