sidebar work in progress

This commit is contained in:
2025-05-10 23:23:58 +02:00
parent c7ebcf0b33
commit 0a1d0f1ca1
3 changed files with 45 additions and 3 deletions

View File

@@ -1,12 +1,14 @@
<script setup lang="ts">
import { UButton } from '#components';
import Sidebar from '~/components/ui/Sidebar.vue';
const todos = ["Staistics", "Computer Graphics", "Webdev"]
</script>
<template>
<div>
<UButton>Click me</UButton>
<div class="h-screen w-screen p-4">
<Sidebar :todos="todos" />
</div>
</template>