mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-16 07:36:44 +08:00
35 lines
836 B
JavaScript
35 lines
836 B
JavaScript
//保全 定义相关组件
|
|
const posterList = () => import(/* webpackChunkName: 'poster' */ '@/views/ebiz/poster/PosterList')
|
|
const posterPreview = () => import(/* webpackChunkName: 'poster' */ '@/views/ebiz/poster/PosterPreview')
|
|
const posterLoading = () => import(/* webpackChunkName: 'poster' */ '@/views/ebiz/poster/PosterLoading')
|
|
|
|
export default [
|
|
{
|
|
path: '/poster/posterList',
|
|
name: 'posterList',
|
|
component: posterList,
|
|
meta: {
|
|
title: '海报制作',
|
|
index: 1
|
|
}
|
|
},
|
|
{
|
|
path: '/poster/posterPreview',
|
|
name: 'posterPreview',
|
|
component: posterPreview,
|
|
meta: {
|
|
title: '海报预览',
|
|
index: 2
|
|
}
|
|
},
|
|
{
|
|
path: '/poster/posterLoading',
|
|
name: 'posterLoading',
|
|
component: posterLoading,
|
|
meta: {
|
|
title: '跳转链接',
|
|
index: 2
|
|
}
|
|
}
|
|
]
|