[Vuejs]-Vue @click event handler disappears when a button is dynamically updated

0👍

bind your attribute like this:

<button type="button"
    class="btn btn-primary"
    @click="getCheckedBoxes"
    :data-product="prodObj.product"
    data-dismiss="modal"
    id="productsModalButton"
>
    Save changes
</button>

if you don’t have prodObj in your component, consider using vue props

Leave a comment