UNPKG

vue-storefront

Version:
14 lines (11 loc) 392 B
import Home from './pages/Home.vue' import Category from './pages/Category.vue' import Product from './pages/Product.vue' const routes = [ { path: '/', component: Home }, { path: '/c/:slug', component: Category }, { path: '/p/:parentSku/:slug/:childSku', component: Product, name: 'product' } ] export default function (app, router, store) { router.addRoutes(routes) }