sund 3 bulan lalu
induk
melakukan
536e0c9bb2
2 mengubah file dengan 42 tambahan dan 0 penghapusan
  1. 14 0
      src/menu/modules/home.ts
  2. 28 0
      src/pages/agendaItem/index.vue

+ 14 - 0
src/menu/modules/home.ts

@@ -40,6 +40,20 @@ const home: Menu.MenuOptions = {
         isLink: '',
         title: 'Action Items'
       }
+    },
+    {
+      component: '/agendaItem/index',
+      name: 'agendaItemIndex',
+      path: '/agenda-items/index',
+      meta: {
+        icon: '',
+        isAffix: false,
+        isFull: false,
+        isHide: false,
+        isKeepAlive: true,
+        isLink: '',
+        title: 'Agenda Items'
+      }
     }
   ]
 };

+ 28 - 0
src/pages/agendaItem/index.vue

@@ -0,0 +1,28 @@
+<template>
+  <StPage>
+    <div class="home card">
+      <img class="home-bg" src="@/assets/images/welcome.png" alt="welcome" />
+    </div>
+  </StPage>
+</template>
+
+<route lang="yaml">
+meta:
+  title: action items
+  isAffix: true
+</route>
+
+<style lang="scss" scoped>
+.home {
+  display: flex;
+  align-items: center;
+  justify-content: center;
+  width: 100%;
+  height: 100%;
+  .home-bg {
+    width: 70%;
+    max-width: 1200px;
+    margin-bottom: 20px;
+  }
+}
+</style>