Add internal pages.

pull/9/head
ruibaby 2019-04-11 16:43:49 +08:00
parent 327ce1c017
commit abe5847711
3 changed files with 34 additions and 0 deletions

View File

@ -73,6 +73,20 @@ export const asyncRouterMap = [
name: 'PageEdit',
component: () => import('@/views/page/PageEdit'),
meta: { title: '新建页面', hiddenHeaderContent: false }
},
{
path: '/pages/links',
name: 'LinkList',
hidden: true,
component: () => import('@/views/page/internal/LinkList'),
meta: { title: '友情链接', hiddenHeaderContent: false }
},
{
path: '/pages/galleries',
name: 'GalleryList',
hidden: true,
component: () => import('@/views/page/internal/GalleryList'),
meta: { title: '图库', hiddenHeaderContent: false }
}
]
},

View File

@ -0,0 +1,10 @@
<template>
<div class="page-header-index-wide">Link List</div>
</template>
<script>
export default {}
</script>
<style scoped>
</style>

View File

@ -0,0 +1,10 @@
<template>
<div class="page-header-index-wide">Link List</div>
</template>
<script>
export default {}
</script>
<style scoped>
</style>