Displaying cart items
Now we're going to work on displaying the products in the cart. So down here in the cart section we're going to put an unordered list tag.
We'll then put a list item inside it, and we'll use the v-for
directive to iterate our cart items.
<div class="cart">
<h2>Shopping Cart</h2>
<ul>
<li v-for></li>
</ul>
<div>
Total: {{ total }}
</div>
</div>
Click to load comments...