Files
ebiz-h5/src/router/ebiz/poster.js
liu.xiaofeng@ebiz-digits.com 279d82f514 页面加载响应慢优化
2023-09-04 16:37:00 +08:00

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
}
}
]