summaryrefslogtreecommitdiff
path: root/iridescence/src/components/CartCheckout.vue
diff options
context:
space:
mode:
authorAdam T. Carpenter <atc@53hor.net>2020-09-15 17:24:00 -0400
committerAdam T. Carpenter <atc@53hor.net>2020-09-15 17:24:00 -0400
commit253dceb5591c5a39122f1439a721ce5b0b3fc97c (patch)
tree0a217184cd29f6ff8bc23fa9b7163594cdccf096 /iridescence/src/components/CartCheckout.vue
parent78daddbbbee1b67bbf3960e3d4d08d0757547207 (diff)
downloadtheglassyladies-253dceb5591c5a39122f1439a721ce5b0b3fc97c.tar.xz
theglassyladies-253dceb5591c5a39122f1439a721ce5b0b3fc97c.zip
added new product button, added search bar to admin view
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>