This commit is contained in:
Vladimir Voronin
2024-10-24 17:32:14 +03:00
parent 41a6a15936
commit c5257376a3
52 changed files with 19652 additions and 0 deletions

36
src/App.vue Normal file
View File

@@ -0,0 +1,36 @@
<template>
<div id="app" class="flex flex-col h-screen bg-gray-100">
<!-- MenuBar всегда фиксирован сверху -->
<MenuBar class="w-full fixed top-0 z-10"/>
<!-- Контентная часть заполняет оставшееся пространство -->
<div class="flex-grow mt-16 ">
<router-view class="w-full h-full "/>
</div>
<OverlayView/>
</div>
</template>
<script setup lang="ts">
import MenuBar from "./components/MenuBar.vue";
import OverlayView from "@/components/OverlayView.vue";
// @Options({
// components: {
// TransactionEditDrawer, SpeedDial,
// MenuBar,
// },
// })
// export default class App extends Vue {}
</script>
<style scoped>
/* Пример настройки высоты для поддержки flexbox */
#app {
min-height: 100vh;
display: flex;
flex-direction: column;
}
</style>