Remove unused features from starter kit, #35

This commit is contained in:
2025-11-14 12:40:32 +01:00
parent 38cf214051
commit 81f0c1ce56
29 changed files with 56 additions and 646 deletions
+2 -6
View File
@@ -2,7 +2,7 @@
import AppLayout from '@/layouts/AppLayout.vue'
import { invoices } from '@/routes'
import { type Invoice, type BreadcrumbItem, type Customer, type Address } from '@/types'
import { type Invoice, type Customer, type Address } from '@/types'
import { newInvoice } from '@/types/index.d'
import { Head } from '@inertiajs/vue3'
import { computed, ref, onMounted, watch } from 'vue'
@@ -21,10 +21,6 @@ import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from '@/comp
import { Kbd, KbdGroup } from '@/components/ui/kbd'
import { statusBadgeLabels } from '@/components/ui/status-badge'
const breadcrumbs: BreadcrumbItem[] = [{
title: 'Rechnungsstellung',
href: invoices().url,
}]
const invoicesData = ref([] as Invoice[])
const activeInvoice = ref<Invoice | null>(null)
const customersData = ref([] as Customer[])
@@ -198,7 +194,7 @@ const deleteInvoice = async (id: number) => {
<Head title="Rechnungen" />
<!-- Function Header -->
<AppLayout :breadcrumbs="breadcrumbs">
<AppLayout>
<div
class="flex h-full flex-1 flex-col gap-4 overflow-x-auto p-4 lg:p-8 lg:pl-4 print:bg-transparent print:p-0 print:m-0">