This commit is contained in:
Dede Fuji Abdul 2023-10-18 15:57:42 +07:00
parent 2847d5e390
commit f87bd5cc86
2 changed files with 15 additions and 1 deletions

View File

@ -98,7 +98,7 @@ const closeSideBar = () => menu.toggleSidebar()
<img class="w-auto h-11" :src="IconApp" alt="PLN" /> <img class="w-auto h-11" :src="IconApp" alt="PLN" />
</RouterLink> </RouterLink>
</div> </div>
<div :class="[menu.sidebarShowed ? 'flex flex-col flex-grow overflow-y-auto' : 'hidden']"> <div :class="[menu.sidebarShowed ? 'flex flex-col flex-grow overflow-y-auto' : 'hidden', '']">
<div class="flex flex-col flex-grow mt-5"> <div class="flex flex-col flex-grow mt-5">
<nav class="flex-1 px-2 pb-4 space-y-1"> <nav class="flex-1 px-2 pb-4 space-y-1">
<template v-for="item in menu.navigation" :key="item.name"> <template v-for="item in menu.navigation" :key="item.name">

View File

@ -295,6 +295,20 @@ export const useMenuStore = defineStore('menu', () => {
expanded: false, expanded: false,
children: [], children: [],
}, },
{
name: 'Rekapitulasi Keluhan Per Kelompok Keluhan',
href: '/keluhan/2/7',
icon: SmileySad,
expanded: false,
children: [],
},
{
name: 'Rekapitulasi Rating Per Unit',
href: '/keluhan/2/8',
icon: SmileySad,
expanded: false,
children: [],
},
], ],
}, },
], ],