mirror of
https://github.com/versia-pub/frontend.git
synced 2025-12-06 08:28:20 +01:00
37 lines
1.1 KiB
Vue
37 lines
1.1 KiB
Vue
<template>
|
|
<Sidebar collapsible="offcanvas">
|
|
<InstanceHeader />
|
|
<SidebarContent>
|
|
<SidebarGroup>
|
|
<SidebarGroupLabel>{{
|
|
m.trite_real_sawfish_drum()
|
|
}}</SidebarGroupLabel>
|
|
<NavItems
|
|
:items="
|
|
sidebarConfig.other.filter((i) =>
|
|
i.requiresLogin ? !!identity : true
|
|
)
|
|
"
|
|
/>
|
|
</SidebarGroup>
|
|
</SidebarContent>
|
|
<FooterActions />
|
|
<SidebarRail />
|
|
</Sidebar>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { sidebarConfig } from "~/components/sidebars/sidebar";
|
|
import {
|
|
Sidebar,
|
|
SidebarContent,
|
|
SidebarGroup,
|
|
SidebarGroupLabel,
|
|
SidebarRail,
|
|
} from "~/components/ui/sidebar";
|
|
import * as m from "~~/paraglide/messages.js";
|
|
import FooterActions from "./footer/footer-actions.vue";
|
|
import InstanceHeader from "./instance/instance-header.vue";
|
|
import NavItems from "./navigation/nav-items.vue";
|
|
</script>
|