nuxt-session
nuxt-session copied to clipboard
Where defined ''cart/setProducts'
In Readme.md "dispatch('cart/setProducts', session.cart);" question is the API 'cart/setProducts' where is it? the file '/server/api/cart/add.js' how to use it?
cart/setProducts is a Vuex Store Action. Which simply sets the cart items upon the initial request.
/server/api/cart/add.js is a nuxt-api action. Which is not officially released yet. But I will make some effort soon to update it's state and documentation.