|
@@ -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;
|