Skip to content

Dashboard content

The dashboard content component serves as the main area for displaying the dashboard’s primary content. It hosts data, charts, tables, or any other interface elements relevant to the selected view. This component ensures the core information remains prominent and easy to navigate.

Slots

default
The content of the dashboard application.

Snippet

vue
<template>
    <FluxDashboardContent>
        <!-- Your content here. -->
    </FluxDashboardContent>
</template>

<script
    setup
    lang="ts">
    import { FluxDashboardContent } from '@flux-ui/dashboard';
</script>