.sidebar-wrapper.h-full.rounded.px-2.py-6.flex.flex-col
.menu-item.text-base.px-4.py-3.rounded.cursor-pointer.whitespace-nowrap(
v-for="item in menuItem",
:key="item.id",
:id="item.id",
@click="selectItem(item)",
:class="{'menu-item-active': item.component === modelValue}"
) {{item.title}}