mirror of
https://gitee.com/dromara/go-view.git
synced 2026-04-23 00:00:12 +08:00
init
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
import projectRoutes from './project.router'
|
||||
|
||||
export default {
|
||||
projectRoutes
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
import { RouteRecordRaw } from 'vue-router';
|
||||
|
||||
const projectRoutes: RouteRecordRaw = {
|
||||
path: '/project',
|
||||
name: 'Project',
|
||||
component: () => import('@/views/project/index.vue'),
|
||||
meta: {
|
||||
title: '项目',
|
||||
isRoot: true,
|
||||
}
|
||||
};
|
||||
|
||||
export default projectRoutes;
|
||||
Reference in New Issue
Block a user