27 lines
452 B
JavaScript
27 lines
452 B
JavaScript
// home.js
|
|
const Layout = () => import('@/layout/index.vue')
|
|
const Home = () => import('@/views/home/index.vue')
|
|
|
|
export default [
|
|
{
|
|
path: '/home',
|
|
component: Layout,
|
|
name: 'Dashboard',
|
|
meta: {
|
|
title: 'Dashboard',
|
|
},
|
|
icon: 'home',
|
|
children: [
|
|
{
|
|
path: '',
|
|
name: 'home',
|
|
component: Home,
|
|
meta: {
|
|
title: '首页',
|
|
affix: true,
|
|
},
|
|
},
|
|
],
|
|
},
|
|
]
|