How does Vue overwrite jQuery event listeners
问题 I have read that jQuery and Vue tend not to work very well together (see eg. https://vuejsdevelopers.com/2017/05/20/vue-js-safely-jquery-plugin/). As I have a large jQuery app that I am progressively incorporating Vue into, I'd like to understand what's going on under the hood so I can avoid conflicts. Here's a simplified test page: $('#a').click(function() { alert('a'); }); $(function() { $('#b').click(function() { alert('b'); }); }); var app = new Vue({ el: '.container', mounted: function()