仪表盘页面
仪表盘页面的包装器。
用法
该 DashboardPage
组件旨在作为页面的根组件。它确保所有 DashboardPanel 的布局和滚动行为一致。
pages/settings.vue
<template>
<UDashboardPage>
<UDashboardPanel>
<UDashboardNavbar />
<NuxtPage />
</UDashboardPanel>
</UDashboardPage>
</template>
这演示了一个父页面,它在 DashboardPanel 中包含一个 NuxtPage。这样,它的子页面就可以包装在 DashboardPanelContent 中。
Props
ui
DeepPartial<{ wrapper: string; }>
{}
配置
{
wrapper: 'flex flex-1 w-full min-w-0'
}