display product list, rest addtocart

This commit is contained in:
2019-10-05 20:01:06 +02:00
parent f5e18e9c20
commit ebb20c6176
30 changed files with 1403 additions and 10 deletions

View File

@ -6,6 +6,8 @@ import Base from 'vuejs/components/Pages/Base'
import Blabla from 'vuejs/components/Pages/Blabla'
import Article from 'vuejs/components/Pages/Article'
import Showrooms from 'vuejs/components/Pages/Showrooms'
import Pricing from 'vuejs/components/Pages/Pricing'
import Cart from 'vuejs/components/Pages/Cart'
Vue.use(VueRouter)
@ -66,14 +68,24 @@ const routes = [
path: `${basePath}showrooms`,
component: Showrooms,
// meta: { uuid:null }
}
},
// {
// path: '*',
// name: 'notfound',
// components: {
// 'notfound': NotFound
// }
// }
// },
{
name:'pricing',
path: `${basePath}pricing`,
component: Pricing
},
{
name:'cart',
path: `${basePath}cart`,
component: Cart
}
]
export default new VueRouter({