summaryrefslogtreecommitdiff
path: root/iridescence/src/components/admin/NewProduct.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/admin/NewProduct.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/admin/NewProduct.vue')
-rw-r--r--iridescence/src/components/admin/NewProduct.vue17
1 files changed, 17 insertions, 0 deletions
diff --git a/iridescence/src/components/admin/NewProduct.vue b/iridescence/src/components/admin/NewProduct.vue
new file mode 100644
index 0000000..b8d8dd2
--- /dev/null
+++ b/iridescence/src/components/admin/NewProduct.vue
@@ -0,0 +1,17 @@
+<template>
+ <div id="addNewProduct">
+ <button class="button is-primary">
+ + Add New
+ </button>
+ </div>
+</template>
+
+<script>
+export default {
+ name: "AddNewProduct",
+ props: {},
+ watch: {},
+ computed: {},
+ methods: {}
+};
+</script>