Douglas Araujo

Results 2 comments of Douglas Araujo

I solved how to use it... I created a directive. ``` Vue.directive('bsswitch', { twoWay: true, bind: function () { $(this.el).on("switchChange.bootstrapSwitch", function(e) { this.set($(this.el).is(':checked')); }.bind(this)); }, update: function(nv, ov) { $(this.el).bootstrapSwitch('state',...