route.js
443 Bytes
/*
* @Date: 2022-07-18 10:22:22
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2024-06-21 16:28:50
* @FilePath: /vue-flow-editor/doc/route.js
* @Description: 文件描述
*/
export default [{
path: '/',
component: () => import('./index.vue'),
meta: {
title: '首页',
}
}, {
path: '/select_user_page',
component: () => import('./selectUserPage.vue'),
meta: {
title: '组织结构选择框',
}
}];