19 lines
305 B
Vue
19 lines
305 B
Vue
<script setup lang="ts">
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<v-footer
|
|
:app="true"
|
|
:rounded="true"
|
|
color="red"
|
|
>
|
|
<div class="px-4 py-2 bg-black text-center w-100">
|
|
{{ new Date().getFullYear() }} — <strong>Vuetify</strong>
|
|
</div>
|
|
</v-footer>
|
|
</template>
|
|
|
|
<style scoped>
|
|
|
|
</style> |