diff options
author | Adam T. Carpenter <atc@53hor.net> | 2020-11-23 17:29:58 -0500 |
---|---|---|
committer | Adam T. Carpenter <atc@53hor.net> | 2020-11-23 17:29:58 -0500 |
commit | 2e7da5ab02ffa8b07fede7f6cd7e5dbbd90fac5f (patch) | |
tree | f1d29c4e00174540821d3f8cd9e9b3d943f90f26 /iridescence/src/router/index.js | |
parent | 58c7f82c2cbf2f2ff3f5c2dd559e570924a41a4a (diff) | |
download | theglassyladies-2e7da5ab02ffa8b07fede7f6cd7e5dbbd90fac5f.tar.xz theglassyladies-2e7da5ab02ffa8b07fede7f6cd7e5dbbd90fac5f.zip |
finished up product detail functionality, started checkout and cart
views
Diffstat (limited to 'iridescence/src/router/index.js')
-rw-r--r-- | iridescence/src/router/index.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/iridescence/src/router/index.js b/iridescence/src/router/index.js index 8c05e28..cc63967 100644 --- a/iridescence/src/router/index.js +++ b/iridescence/src/router/index.js @@ -3,6 +3,8 @@ import VueRouter from "vue-router"; import Home from "../views/Home.vue"; import About from "../views/About.vue"; import Admin from "../views/Admin.vue"; +import Cart from "../views/Cart.vue"; +import Checkout from "../views/Checkout.vue"; Vue.use(VueRouter); @@ -24,6 +26,16 @@ const routes = [ path: "/admin", name: "Administration", component: Admin + }, + { + path: "/cart", + name: "Cart", + component: Cart + }, + { + path: "/checkout", + name: "Checkout", + component: Checkout } ]; |