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/views | |
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/views')
-rw-r--r-- | iridescence/src/views/Admin.vue | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/iridescence/src/views/Admin.vue b/iridescence/src/views/Admin.vue index 85d6a14..ec02e07 100644 --- a/iridescence/src/views/Admin.vue +++ b/iridescence/src/views/Admin.vue @@ -2,6 +2,7 @@ <div id="admin"> <div class="container"> <section class="section"> + <ProductSearch></ProductSearch> <ProductEditList></ProductEditList> </section> </div> @@ -9,12 +10,14 @@ </template> <script> +import ProductSearch from "@/components/ProductSearch.vue"; import ProductEditList from "@/components/admin/ProductEditList.vue"; export default { name: "Admin", components: { - ProductEditList + ProductEditList, + ProductSearch } }; </script> |