summaryrefslogtreecommitdiff
path: root/iridescence/src/components/CartCheckout.vue
diff options
context:
space:
mode:
Diffstat (limited to 'iridescence/src/components/CartCheckout.vue')
-rw-r--r--iridescence/src/components/CartCheckout.vue15
1 files changed, 15 insertions, 0 deletions
diff --git a/iridescence/src/components/CartCheckout.vue b/iridescence/src/components/CartCheckout.vue
new file mode 100644
index 0000000..ec72acf
--- /dev/null
+++ b/iridescence/src/components/CartCheckout.vue
@@ -0,0 +1,15 @@
+<template>
+ <div class="buttons">
+ <button class="button">
+ Cart (5)
+ </button>
+ <button class="button is-info">
+ Checkout
+ </button>
+ </div>
+</template>
+<script>
+export default {
+ name: "CartCheckout"
+};
+</script>