diff options
author | Adam T. Carpenter <atc@53hor.net> | 2020-09-15 17:24:00 -0400 |
---|---|---|
committer | Adam T. Carpenter <atc@53hor.net> | 2020-09-15 17:24:00 -0400 |
commit | 253dceb5591c5a39122f1439a721ce5b0b3fc97c (patch) | |
tree | 0a217184cd29f6ff8bc23fa9b7163594cdccf096 /iridescence/src/components/CartCheckout.vue | |
parent | 78daddbbbee1b67bbf3960e3d4d08d0757547207 (diff) | |
download | theglassyladies-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.vue | 15 |
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> |