diff --git a/src/pages/CheckoutPage.vue b/src/pages/CheckoutPage.vue index 25f993d..ae97b20 100644 --- a/src/pages/CheckoutPage.vue +++ b/src/pages/CheckoutPage.vue @@ -24,7 +24,7 @@

{{ item.quantity }} x {{ item.name }}: ${{ (parseFloat(item.price.replace('$', '')) * item.quantity).toFixed(2) }}

Total: ${{ totalCartValue }}

- + @@ -90,6 +90,10 @@ function decreaseQuantity(itemId) { cartStore.removeItem(itemId) } } + +function handleCheckout() { + throw new Error('Checkout functionality not implemented yet!') +}