As a developer working with vuejs and laravel, my task is to retain the original design and animations provided by the designer without making any changes.
However, when I incorporate vue.js
into the template and alter the route, I find that the entire page loses all event listeners from bootstrap and other libraries.
I am aware that I can manually add event listeners like this:
$(document).on('click','.class',function(){});
But this process is time-consuming. Do you have any alternative solutions in mind?