chore: initial commit — existing single-user document scanner codebase
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user