[Vuejs]-View doesn't get updated after updates in store Vue js

0👍

Should you be using mapState instead of mapGetters to directly map the state products to your component? Do you have a getter called products that does some extra work?

...mapState([
  'products'
]),

Leave a comment