Answer the question
In order to leave comments, you need to log in
How to remove item from cart in vue js after 10 minutes?
The project on vue
has the task of adding a product to the cart, over time, after which the product is removed from the cart, the
product is added to the cart in the store
state.cart.push({
id: product.id,
name: product.name,
path: product.path,
image: product.image,
price: product.price,
old_price: product.old_price,
created_at: new Date().getTime(), //текущая дата
expiration_at: new Date().getTime() + 10000 текущая дата + 10 мин,
quantity: 1
})
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question