display product list, rest addtocart
This commit is contained in:
@ -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({
|
||||
|
Reference in New Issue
Block a user