Filename convention to lowercase-with-dash

This commit is contained in:
Riyyi
2025-04-05 12:19:50 +02:00
parent 232dcf5f14
commit 2c58f39f07
16 changed files with 0 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
<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>