Merge branch 'master' into deploy

This commit is contained in:
Pan 2018-07-16 11:19:08 +08:00
commit 641790162d
3 changed files with 7 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "vue-element-admin", "name": "vue-element-admin",
"version": "3.7.1", "version": "3.7.2",
"description": "A magical vue admin. Typical templates for enterprise applications. Newest development stack of vue. Lots of awesome features", "description": "A magical vue admin. Typical templates for enterprise applications. Newest development stack of vue. Lots of awesome features",
"author": "Pan <panfree23@gmail.com>", "author": "Pan <panfree23@gmail.com>",
"license": "MIT", "license": "MIT",

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