1
0
mirror of https://gitlab.com/MoonTestUse1/AdministrationItDepartmens.git synced 2025-08-14 00:25:46 +02:00

Проверка

This commit is contained in:
MoonTestUse1
2024-12-28 05:32:33 +06:00
commit f9543463c4
84 changed files with 6811 additions and 0 deletions

14
frontend/src/App.vue Normal file
View File

@@ -0,0 +1,14 @@
<template>
<div class="min-h-screen flex flex-col bg-slate-100">
<Header />
<main class="flex-grow container mx-auto px-3 sm:px-4 py-4 sm:py-8">
<router-view></router-view>
</main>
<Footer />
</div>
</template>
<script setup lang="ts">
import Header from './components/Header.vue';
import Footer from './components/Footer.vue';
</script>