feat: add basic Footer component

This commit is contained in:
2025-10-14 18:22:29 +02:00
parent b6c5d256c4
commit 9c4796b113

View File

@@ -1,9 +1,11 @@
<script setup lang="ts"></script> <script setup lang="ts"></script>
<template> <template>
<div> <v-footer>
Component: Footer <div style="display: flex; flex-direction: column;">
</div> <div>(c) Fakulta prírodných vied a informatiky, UKF v Nitre</div>
</div>
</v-footer>
</template> </template>
<style scoped></style> <style scoped></style>