[Vuejs]-Disabled jquery on a div to fix conflicting issues with Vue.js

0👍

We found a fix to correct this conflict between Vue.js and JQuery. This method will not completely disable JQuery on a given scope, but will disable a behavior that we were having trouble with.

$(‘select’).selectmenu("destroy")

More about the method destroy here:
https://api.jqueryui.com/selectmenu/#method-destroy

Leave a comment