Creating the cart
Let's now make it so our product items, once we click their add to cart button, actually show up in the shopping cart list.
We'll go back to our Vue instance and add a new data property called cart
. It'll just be assigned an empty array, as obviously the cart will need to be empty when the page loads.
data: {
...
cart: []
},
Click to load comments...