仪表盘面板内容
仪表盘面板的可滚动容器。
用法
在 仪表盘面板 中使用,DashboardPanelContent
提供了一个带有填充的可滚动容器,用于显示内容,例如 仪表盘卡片、仪表盘部分 或您自己的自定义组件。
pages/index.vue
<template>
<UDashboardPage>
<UDashboardPanel>
<UDashboardNavbar title="Home" />
<UDashboardPanelContent>
<UDashboardCard />
<div class="grid lg:grid-cols-2 gap-4 mt-4">
<UDashboardCard />
<UDashboardCard />
</div>
</UDashboardPanelContent>
</UDashboardPanel>
</UDashboardPage>
</template>
道具
ui
DeepPartial<{ wrapper: string; }>
{}
配置
{
wrapper: 'p-4 flex-1 flex flex-col overflow-y-auto'
}