Nuxt UI v3-alpha 已发布!

立即体验

仪表盘布局

仪表盘布局的包装器。

用法

DashboardLayout 组件旨在作为布局的根组件。它确保所有 DashboardPanelDashboardPage 之间的布局一致性。

layouts/default.vue
<template>
  <UDashboardLayout>
    <UDashboardPanel>
      <UDashboardNavbar />

      <UDashboardSidebar />
    </UDashboardPanel>

    <slot />
  </UDashboardLayout>
</template>

属性

ui
DeepPartial<{ wrapper: string; }>
{}

配置

{
  wrapper: 'fixed inset-0 flex overflow-hidden'
}