Skip to content

Application side

The application side renders an <aside> panel on the right-hand side of the application. Use it for secondary information that complements the current view, for example a chat, a context panel, or a help drawer. Place it inside the side slot of Application.

Accessibility

The panel renders as an <aside> landmark, so assistive technology lists it among the page's regions. Pass an aria-label to give it a distinct, meaningful name when the page has more than one complementary region.

Slots

default
The content of the side panel.

Snippet

vue
<template>
    <FluxApplicationSide>
        <!-- Side panel content. -->
    </FluxApplicationSide>
</template>

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