parent
f093e88379
commit
f2330c9a44
13 changed files with 1029 additions and 845 deletions
Before Width: | Height: | Size: 7.6 KiB After Width: | Height: | Size: 19 KiB |
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,26 @@ |
||||
import BasicLayout from "@/layouts/home"; |
||||
|
||||
const meta = {}; |
||||
|
||||
export default { |
||||
path: "/shop", |
||||
name: "shop", |
||||
redirect: { |
||||
name: `shop` |
||||
}, |
||||
meta, |
||||
component: BasicLayout, |
||||
children: [ |
||||
{ |
||||
name: 'shop', |
||||
path: `/shop`, |
||||
component: () => import("@/pages/shop/list"), |
||||
meta: { title: "职站商城" } |
||||
}, |
||||
{ |
||||
path: `show`, |
||||
component: () => import("@/pages/shop/show"), |
||||
meta: { title: "产品详情" } |
||||
}, |
||||
] |
||||
}; |
Loading…
Reference in new issue