refactor: move sidebar to own component

This commit is contained in:
Twig 2025-08-13 20:52:10 +02:00
parent 2a43f2b678
commit a9af11dcb8
Signed by: twig
SSH key fingerprint: SHA256:nBO+OwpTkd8LYhe38PIqdxmDvkIg9Vw2EbrRZM97dkU
3 changed files with 239 additions and 152 deletions

View file

@ -3,7 +3,7 @@
<div :class="{ hidden: loading, visible: !loading }" id="client-root">
<div class="flex-container-row">
<GuildList />
<SidebarColumn />
<slot />
</div>
</div>
@ -11,7 +11,7 @@
<script lang="ts" setup>
import Loading from '~/components/Popups/Loading.vue';
import GuildList from '~/components/UserInterface/GuildList.vue';
import SidebarColumn from '~/components/UserInterface/SidebarColumn.vue';
definePageMeta({
keepalive: true