34 lines
804 B
Vue
34 lines
804 B
Vue
<template>
|
|
<UFooter :links="links">
|
|
<template #left>
|
|
Copyright © {{ new Date().getFullYear() }}
|
|
</template>
|
|
|
|
<template #right>
|
|
<UButton icon="i-simple-icons-x" color="gray" variant="ghost" to="https://x.com/nuxt_js" target="_blank" />
|
|
<UButton icon="i-simple-icons-discord" color="gray" variant="ghost" to="https://discord.com/invite/ps2h6QT" target="_blank" />
|
|
<UButton icon="i-simple-icons-github" color="gray" variant="ghost" to="https://github.com/nuxt/nuxt" target="_blank" />
|
|
</template>
|
|
</UFooter>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
{
|
|
name: 'Appfooter'
|
|
}
|
|
|
|
const links = [{
|
|
label: 'Nuxt UI',
|
|
to: 'https://ui.nuxt.com/'
|
|
}, {
|
|
label: 'Nuxt Docs',
|
|
to: 'https://nuxt.com'
|
|
}, {
|
|
label: 'Nuxt Studio',
|
|
to: 'https://nuxt.studio'
|
|
}]
|
|
</script>
|
|
|
|
|
|
|