This commit is contained in:
Pan 2018-07-16 11:18:13 +08:00
parent f0a01f0fd1
commit 62e1c851c8
2 changed files with 6 additions and 2 deletions

View file

@ -202,7 +202,7 @@ export const asyncRouterMap = [
{ {
path: '/nested', path: '/nested',
component: Layout, component: Layout,
redirect: '/nested/menu1', redirect: '/nested/menu1/menu1-1',
name: 'nested', name: 'nested',
meta: { meta: {
title: 'nested', title: 'nested',
@ -214,6 +214,7 @@ export const asyncRouterMap = [
component: () => import('@/views/nested/menu1/index'), // Parent router-view component: () => import('@/views/nested/menu1/index'), // Parent router-view
name: 'menu1', name: 'menu1',
meta: { title: 'menu1' }, meta: { title: 'menu1' },
redirect: '/nested/menu1/menu1-1',
children: [ children: [
{ {
path: 'menu1-1', path: 'menu1-1',
@ -225,6 +226,7 @@ export const asyncRouterMap = [
path: 'menu1-2', path: 'menu1-2',
component: () => import('@/views/nested/menu1/menu1-2'), component: () => import('@/views/nested/menu1/menu1-2'),
name: 'menu1-2', name: 'menu1-2',
redirect: '/nested/menu1/menu1-2/menu1-2-1',
meta: { title: 'menu1-2' }, meta: { title: 'menu1-2' },
children: [ children: [
{ {
@ -251,6 +253,7 @@ export const asyncRouterMap = [
}, },
{ {
path: 'menu2', path: 'menu2',
name: 'menu2',
component: () => import('@/views/nested/menu2/index'), component: () => import('@/views/nested/menu2/index'),
meta: { title: 'menu2' } meta: { title: 'menu2' }
} }

View file

@ -36,7 +36,8 @@ import { generateTitle } from '@/utils/i18n'
export default { export default {
name: 'SidebarItem', name: 'SidebarItem',
props: { props: {
item: { // routejson // route object
item: {
type: Object, type: Object,
required: true required: true
}, },