initial commit. Cloned timetracker repository

This commit is contained in:
Daniel Goc
2026-03-10 09:02:57 +01:00
commit f2952bcef0
189 changed files with 21334 additions and 0 deletions

11
bo/src/layouts/empty.vue Normal file
View File

@@ -0,0 +1,11 @@
<template>
<main :key="i18n.locale.value">
<TopBarLogin />
<router-view />
</main>
</template>
<script setup lang="ts">
import TopBarLogin from '@/components/TopBarLogin.vue'
import { i18n } from '@/plugins/i18n'
import HomeView from '@/views/HomeView.vue';
</script>