mirror of
https://github.com/IT4Change/nuxt3-template.git
synced 2025-12-13 05:05:49 +00:00
26 lines
511 B
Vue
26 lines
511 B
Vue
<script setup>
|
|
const links = [
|
|
'Home',
|
|
'About Us',
|
|
'Team',
|
|
'Services',
|
|
'Blog',
|
|
'Contact Us',
|
|
]
|
|
</script>
|
|
<template>
|
|
<v-footer class="bg-grey-lighten-1">
|
|
<v-row justify="center" no-gutters>
|
|
<v-btn
|
|
v-for="link in links"
|
|
:key="link"
|
|
color="white"
|
|
variant="text"
|
|
class="mx-2"
|
|
rounded="xl"
|
|
>
|
|
{{ link }}
|
|
</v-btn>
|
|
</v-row>
|
|
</v-footer>
|
|
</template> |