0👍
To update the store, you need to dispatch the action.
cart.vue
updateCart(product, e)
{
this.quantity = parseInt(e.target.value);
this.$store.dispatch('UPDATE_CART',{ product, quantity: this.quantity })
}
Source:stackexchange.com
0👍
To update the store, you need to dispatch the action.
cart.vue
updateCart(product, e)
{
this.quantity = parseInt(e.target.value);
this.$store.dispatch('UPDATE_CART',{ product, quantity: this.quantity })
}