feat: auth w.i.p.

This commit is contained in:
Florian Sylvain
2024-10-09 22:44:28 +02:00
parent 7afbe2b4c3
commit 87e894ab50
16 changed files with 247 additions and 43 deletions
+11
View File
@@ -0,0 +1,11 @@
<script setup lang="ts">
import CategoriesTable from '@/components/CategoriesTable.vue'
</script>
<template>
<header class="d-flex align-center justify-space-between">
<h1 class="text-h3">Categories</h1>
<VBtn prepend-icon="mdi-plus" variant="flat" color="primary">Create category</VBtn>
</header>
<CategoriesTable />
</template>