Todo app
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

18 lines
285 B

<template>
<footer class="row mb-2">
<div class="col-12">
© {{ year }} Rick van Vonderen
</div>
</footer>
</template>
<style scoped>
footer {
text-align: center;
color: #909090;
}
</style>
<script setup lang="ts">
const year: number = new Date().getFullYear();
</script>