[Vuejs]-Unable to update cart items quantity in vuex

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 })
}

Leave a comment