getters.js 248 B

12345678910
  1. export function cartProducts (state) {
  2. return state.cart.added.map(({ id, quantity }) => {
  3. const product = state.products.find(p => p.id === id)
  4. return {
  5. title: product.title,
  6. price: product.price,
  7. quantity
  8. }
  9. })
  10. }