13 lines
240 B
Vue
13 lines
240 B
Vue
<script setup lang="ts">
|
|
import AppLayout from '@/layouts/AppLayout.vue';
|
|
import { Head } from '@inertiajs/vue3';
|
|
</script>
|
|
|
|
<template>
|
|
|
|
<Head title="Zeiterfassung" />
|
|
|
|
<AppLayout title="Zeiterfassung">
|
|
</AppLayout>
|
|
</template>
|