Vue 2 With Jquery Chosen
Trying to use jquery-chosen with vue, the problem is that this plugin hides the actual select that I applied v-model, so when I select a value vue doesn't recognize it as a select change event and model value is not updated. I've seen some solution available for Vue 1 that don't work with Vue 2 It's showing the current value but doesn't know how to set so that model value changes. http://jsfiddle.net/q21ygz3h/ Vue.directive('chosen', { twoWay: true, // note the two-way binding bind: function(el, binding, vnode) { Vue.nextTick(function() { $(el).chosen().on('change', function(e, params) { alert