Browse Source

feat 新建路由

Jason 1 month ago
parent
commit
28e0e3416e
2 changed files with 32 additions and 0 deletions
  1. BIN
      .DS_Store
  2. 32 0
      src/menu/modules/actionItems.ts

BIN
.DS_Store


+ 32 - 0
src/menu/modules/actionItems.ts

@@ -0,0 +1,32 @@
+const home: Menu.MenuOptions = {
+  component: '/actionItems',
+  name: 'actionItems',
+  path: '/action-items',
+  meta: {
+    icon: '',
+    isAffix: true,
+    isFull: false,
+    isHide: false,
+    isKeepAlive: true,
+    isLink: '',
+    title: 'Action Items',
+    index: 0
+  },
+  children: [
+    {
+      component: '/actionItems/index',
+      name: 'actionItemsIndex',
+      path: '/action-items/index',
+      meta: {
+        icon: '',
+        isAffix: false,
+        isFull: false,
+        isHide: false,
+        isKeepAlive: true,
+        isLink: '',
+        title: 'Action Items'
+      }
+    }
+  ]
+};
+export default home;