Is there any way to append vue.js events to existing html elements?
HTML elements:
<div class="borrow-button">Borrow</div>
<div class="borrow-button">Borrow</div>
<div class="borrow-button">Borrow</div>
Can I somehow add vue.js event to this divs?
$('.borrow-button').each(function(i, obj) {
//how to append for example onclick event to this divs? (onclick="borrow")
});