73 lines
1.5 KiB
JavaScript
73 lines
1.5 KiB
JavaScript
const Layout = () => import('@/layout/index.vue')
|
|
|
|
export const basicRoutes = [
|
|
{
|
|
name: '404',
|
|
path: '/404',
|
|
component: () => import('@/views/error-page/404.vue'),
|
|
isHidden: true,
|
|
},
|
|
|
|
{
|
|
name: 'Login',
|
|
path: '/login',
|
|
component: () => import('@/views/login/index.vue'),
|
|
isHidden: true,
|
|
meta: {
|
|
title: '登录页',
|
|
},
|
|
},
|
|
|
|
{
|
|
name: 'ExternalLink',
|
|
path: '/external-link',
|
|
component: Layout,
|
|
meta: {
|
|
title: '外部链接',
|
|
icon: 'mdi:link-variant',
|
|
index: 2,
|
|
},
|
|
children: [
|
|
{
|
|
name: 'LinkGithubSrc',
|
|
path: 'https://github.com/zclzone/vue-naive-admin',
|
|
meta: {
|
|
title: '源码 - github',
|
|
icon: 'mdi:github',
|
|
},
|
|
},
|
|
{
|
|
name: 'LinkGiteeSrc',
|
|
path: 'https://gitee.com/zclzone/vue-naive-admin',
|
|
meta: {
|
|
title: '源码 - gitee',
|
|
icon: 'simple-icons:gitee',
|
|
},
|
|
},
|
|
{
|
|
name: 'LinkDocs',
|
|
path: 'https://zclzone.github.io/vue-naive-admin-docs',
|
|
meta: {
|
|
title: '文档 - vuepress',
|
|
icon: 'mdi:vuejs',
|
|
},
|
|
},
|
|
],
|
|
},
|
|
]
|
|
|
|
export const NOT_FOUND_ROUTE = {
|
|
name: 'NotFound',
|
|
path: '/:pathMatch(.*)*',
|
|
redirect: '/404',
|
|
isHidden: true,
|
|
}
|
|
|
|
const modules = import.meta.globEager('@/views/**/route.js')
|
|
const asyncRoutes = []
|
|
Object.keys(modules).forEach((key) => {
|
|
asyncRoutes.push(modules[key].default)
|
|
})
|
|
|
|
export { asyncRoutes }
|