Files
kite/frontend/src/App.vue
T
2026-05-22 08:53:28 +02:00

18 lines
424 B
Vue

<template>
<div class="flex h-screen overflow-hidden">
<AppSidebar />
<main class="flex-1 overflow-y-auto">
<router-view />
</main>
</div>
</template>
<script setup>
import AppSidebar from './components/layout/AppSidebar.vue'
import { useTopicsStore } from './stores/topics.js'
import { onMounted } from 'vue'
const topicsStore = useTopicsStore()
onMounted(() => topicsStore.fetchTopics())
</script>