[Vuejs]-How to have Vue handle events for jQuery dynamically created button?

-1👍

You are generating dynamic elements, so try below code:

$('your-parent-element').on('click', 'button', function(){
//write you code here.
})   

“Anyway event is working with DOM elements from stratch. What’s wrong”
– check your console panel of browser if is there any error.

Hope this may help you.

Leave a comment