There are many dynamically generated select box in a page. I want to apply the jquery selectBoxIt (http://gregfranko.com/jquery.selectBoxIt.js/) plugin. I am using Vue js . Where should I put
$('.cl_v').selectBoxIt({ theme: 'default', 'defaultText': 'select', autoWidth: false });
in order to attach the plugin with the select elements? The class applied to the select box is cl_v. I have placed the above code in created: , mounted: and destroyed: . But it did not work. How can I use the plugin with Vue.js? Thanks