Filename convention to lowercase-with-dash
This commit is contained in:
@@ -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>
|
||||
Reference in New Issue
Block a user