vbv/client/src/components/Footer.vue

22 lines
284 B
Vue

<script setup lang="ts">
import * as log from 'loglevel';
log.debug('Footer created');
</script>
<template>
<footer
class="
px-8
py-4
bg-gray-100
border-t border-gray-500
">
@2022 VBV
</footer>
</template>
<style scoped>
</style>