diff options
author | Adam T. Carpenter <atc@53hor.net> | 2020-11-11 20:07:12 -0500 |
---|---|---|
committer | Adam T. Carpenter <atc@53hor.net> | 2020-11-11 20:07:12 -0500 |
commit | 7381a7033231e6454a37fd64b1f3de4e8d59355f (patch) | |
tree | 7ae54976c2d036e0fe7cb199a7f6facdd09bbb6d /iridescence/src/components/Navbar.vue | |
parent | c5280144de096c274f185fade287ccd63b954ceb (diff) | |
download | theglassyladies-7381a7033231e6454a37fd64b1f3de4e8d59355f.tar.xz theglassyladies-7381a7033231e6454a37fd64b1f3de4e8d59355f.zip |
Kind of flailing with the UI; lots of API bugfixes though.
Diffstat (limited to 'iridescence/src/components/Navbar.vue')
-rw-r--r-- | iridescence/src/components/Navbar.vue | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/iridescence/src/components/Navbar.vue b/iridescence/src/components/Navbar.vue index 0a66fa8..78627e9 100644 --- a/iridescence/src/components/Navbar.vue +++ b/iridescence/src/components/Navbar.vue @@ -36,14 +36,9 @@ > <div class="navbar-end" - v-if="routeName == 'Administration'" - key="newProduct" + v-if="routeName != 'Administration'" + key="cartCheckout" > - <div class="navbar-item"> - <NewProduct></NewProduct> - </div> - </div> - <div class="navbar-end" v-else key="cartCheckout"> <div class="navbar-item has-dropdown is-active" v-for="category in categories.keys()" @@ -74,13 +69,11 @@ <script> import CartCheckout from "@/components/CartCheckout.vue"; -import NewProduct from "@/components/admin/NewProduct.vue"; export default { name: "Navbar", components: { - CartCheckout, - NewProduct + CartCheckout }, data() { return { |