Completing the shop SPA
The last step is to add a link from the OrderBasket
component to the OrderCheckout
page. This can be done by linking to the Checkout
route. With that, your checkout is complete, along with your shop! Add the following link to the basket:
template: `<div>
<h1>Basket</h1>
<list-purchases :editable="true" />
<router-link :to="{name: 'Checkout'}">Proceed to Checkout</router-link>
</div>`,