|
@@ -7,12 +7,12 @@ Vue.use(VueRouter);
|
|
|
const routes = [
|
|
|
{
|
|
|
path: '/',
|
|
|
- name: 'home',
|
|
|
+ meta: { title: '首页管理' },
|
|
|
component: () => import('../views/home/index.vue'),
|
|
|
},
|
|
|
{
|
|
|
path: '/menu/index',
|
|
|
- name: 'menu',
|
|
|
+ meta: { title: '菜单管理' },
|
|
|
component: () => import('../views/menu/index.vue'),
|
|
|
},
|
|
|
];
|