I'm using a jQuery plugin that requires me to bind an event to a class on a button.
The button is repeated in a table like so:
<tr v-for="option in app.options">
<td>{{ option.value1 }}</td>
<td>{{ option.value2 }}</td>
<td><button class="btn btn-primary next">Choose</button></td>
</tr>
However, when it renders the options (which are not set to begin with, they're set via an http request), and the button is clicked, the jQuery event isn't registered on the button even though it has the next class attached to it.
How can I get jQuery to recognize the button with the .next class when it's rendered by Vue.js?