diff options
Diffstat (limited to 'iridescence/src/views')
-rw-r--r-- | iridescence/src/views/Cart.vue | 20 | ||||
-rw-r--r-- | iridescence/src/views/Checkout.vue | 12 |
2 files changed, 32 insertions, 0 deletions
diff --git a/iridescence/src/views/Cart.vue b/iridescence/src/views/Cart.vue new file mode 100644 index 0000000..7060b60 --- /dev/null +++ b/iridescence/src/views/Cart.vue @@ -0,0 +1,20 @@ +<template> + <div id="cart"> + <div class="container"> + <section class="section"> + <CartItem></CartItem> + </section> + </div> + </div> +</template> + +<script> +import CartItem from "@/components/cart/CartItem.vue"; + +export default { + name: "Cart", + components: { + CartItem + } +}; +</script> diff --git a/iridescence/src/views/Checkout.vue b/iridescence/src/views/Checkout.vue new file mode 100644 index 0000000..ab28517 --- /dev/null +++ b/iridescence/src/views/Checkout.vue @@ -0,0 +1,12 @@ +<template> + <div id="checkout"> + checkout + </div> +</template> + +<script> +export default { + name: "Checkout", + components: {} +}; +</script> |