Added new time utility

This commit is contained in:
Louis Hollingworth 2022-05-23 20:37:02 +01:00
parent f2aef2012b
commit 26e91acd9c
No known key found for this signature in database
GPG key ID: 1E66DEA3F5D623D1
10 changed files with 224 additions and 57 deletions

View file

@ -16,27 +16,23 @@
</div>
</template>
<script>
export default {
data() {
return {
navLinks: [
{
img: {
name: '/icons/arrow-left.svg',
alt: 'Back to Utilities',
},
to: '/utilities',
},
{
img: {
name: '/icons/home.svg',
alt: 'Home',
},
to: '/',
},
],
};
<script setup>
const navLinks = [
{
img: {
name: '/icons/arrow-left.svg',
alt: 'Back to Utilities',
},
to: '/utilities',
name: "Utilities",
},
};
{
img: {
name: '/icons/home.svg',
alt: 'Go Home',
},
to: '/',
name: "Home",
},
];
</script>