This repository has been archived on 2025-02-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
iu-quiz-app/components/FooterApp.vue
2022-10-30 11:28:50 +01:00

9 lines
250 B
Vue

<template>
<v-footer app dark>
<v-row justify="center" no-gutters>
<v-col cols="12" class="text-center">
<span class="text-caption">&copy; {{ new Date().getFullYear() }}</span>
</v-col>
</v-row>
</v-footer>
</template>