diff options
author | Adam T. Carpenter <atc@53hor.net> | 2020-12-27 09:37:15 -0500 |
---|---|---|
committer | Adam T. Carpenter <atc@53hor.net> | 2020-12-27 09:37:15 -0500 |
commit | 91b538c776071a7ae60adfa25bfcaccc0403896e (patch) | |
tree | 65278ac7ba6ab78ef55602bfdb895c7cab9ac488 /iridescence/src/router | |
parent | 335a9e3dfe2bb1dde3900018b01fdad6baad1595 (diff) | |
download | theglassyladies-91b538c776071a7ae60adfa25bfcaccc0403896e.tar.xz theglassyladies-91b538c776071a7ae60adfa25bfcaccc0403896e.zip |
Added care, privacy, faq, fixed custom order temporarily, fixed site
title
Diffstat (limited to 'iridescence/src/router')
-rw-r--r-- | iridescence/src/router/index.js | 27 |
1 files changed, 18 insertions, 9 deletions
diff --git a/iridescence/src/router/index.js b/iridescence/src/router/index.js index cc63967..ce48c8c 100644 --- a/iridescence/src/router/index.js +++ b/iridescence/src/router/index.js @@ -1,10 +1,12 @@ import Vue from "vue"; import VueRouter from "vue-router"; import Home from "../views/Home.vue"; -import About from "../views/About.vue"; +import Care from "../views/Care.vue"; +import Faq from "../views/Faq.vue"; import Admin from "../views/Admin.vue"; import Cart from "../views/Cart.vue"; import Checkout from "../views/Checkout.vue"; +import Privacy from "../views/Privacy.vue"; Vue.use(VueRouter); @@ -15,14 +17,6 @@ const routes = [ component: Home }, { - path: "/about", - name: "About", - // route level code-splitting - // this generates a separate chunk (about.[hash].js) for this route - // which is lazy-loaded when the route is visited. - component: About - }, - { path: "/admin", name: "Administration", component: Admin @@ -36,6 +30,21 @@ const routes = [ path: "/checkout", name: "Checkout", component: Checkout + }, + { + path: "/faq", + name: "F.A.Q.", + component: Faq + }, + { + path: "/care", + name: "Care & Handling", + component: Care + }, + { + path: "/privacy", + name: "Privacy", + component: Privacy } ]; |