initial commit. Cloned timetracker repository
This commit is contained in:
14
bo/src/layouts/default.vue
Normal file
14
bo/src/layouts/default.vue
Normal file
@@ -0,0 +1,14 @@
|
||||
<script setup lang="ts">
|
||||
import TopBarLogin from '@/components/TopBarLogin.vue'
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="h-screen grid grid-rows-[auto_1fr_auto]">
|
||||
<!-- <header class="w-full bg-gray-100 text-primary shadow border-b-gray-300 p-4 mb-8">Header</header> -->
|
||||
<UContainer>
|
||||
<main class="p-10">
|
||||
<router-view />
|
||||
</main>
|
||||
</UContainer>
|
||||
</div>
|
||||
</template>
|
||||
11
bo/src/layouts/empty.vue
Normal file
11
bo/src/layouts/empty.vue
Normal 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>
|
||||
Reference in New Issue
Block a user