<div>
<input
type="checkbox"
class="delete-checkbox"
:id=this.products[index].sku
@click="setDelete(this.products[index].sku)" />
</div>
I'm currently working on a Vuex application and I need to trigger an event when this specific checkbox is checked. Unfortunately, I'm not sure how to achieve this functionality.
Any assistance would be greatly appreciated. Thank you!