Nuxt UI Pro dashboard sidebar not rendering.
I'm creating a dashboard in nuxt ui but the side bar is not rendered at all. I have followed all the installation steps.
UDashboardSidebarUDashboardPanel<template>
<UDashboardLayout>
<UDashboardPanel :width="250" :resizable="{ min: 200, max: 300 }" collapsible>
<UDashboardNavbar />
<UDashboardSidebar>
<template #header>
<UDashboardSearchButton />
</template>
<UDashboardSidebarLinks :links="links" />
</UDashboardSidebar>
</UDashboardPanel>
<slot />
</UDashboardLayout>
</template>
<script setup>
const links = [
// Define your sidebar links here
]
</script>