Remove unused features from starter kit, #35
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
import { ref, onMounted, computed, useTemplateRef, watch } from 'vue'
|
||||
import AppLayout from '@/layouts/AppLayout.vue'
|
||||
import { customers } from '@/routes'
|
||||
import { Address, type BreadcrumbItem } from '@/types'
|
||||
import { Address } from '@/types'
|
||||
import { Head } from '@inertiajs/vue3'
|
||||
import api from '@/axios'
|
||||
import { Customer, Contact } from '@/types'
|
||||
@@ -24,13 +24,6 @@ import { toast } from 'vue-sonner'
|
||||
import { SocialIcon } from '@/components/ui/social-icon'
|
||||
import { AxiosError } from 'axios'
|
||||
|
||||
const breadcrumbs: BreadcrumbItem[] = [
|
||||
{
|
||||
title: 'Kunden',
|
||||
href: customers().url,
|
||||
},
|
||||
]
|
||||
|
||||
const customersData = ref([] as Customer[])
|
||||
const searchQuery = ref('')
|
||||
const searchField = ref()
|
||||
@@ -130,7 +123,7 @@ const call = (number: string, event: Event) => {
|
||||
|
||||
<Head title="Dashboard" />
|
||||
|
||||
<AppLayout :breadcrumbs="breadcrumbs">
|
||||
<AppLayout>
|
||||
<div
|
||||
class="flex h-full flex-1 flex-col gap-4 overflow-x-auto p-4 lg:p-8 print:bg-transparent print:p-0 print:m-0">
|
||||
|
||||
|
||||
Reference in New Issue
Block a user