mealie/frontend/components/Layout/AppFooter.vue

26 lines
657 B
Vue
Raw Normal View History

<template>
<v-footer color="primary" padless app>
2021-08-02 03:24:47 +00:00
<v-row justify="center" align="center" dense no-gutters>
<v-col class="py-2 text-center white--text" cols="12">
<v-btn color="white" icon href="https://github.com/hay-kot/mealie" target="_blank">
2021-08-02 03:24:47 +00:00
<v-icon>
{{ $globals.icons.github }}
</v-icon>
</v-btn>
{{ new Date().getFullYear() }} <strong> Mealie </strong>
2021-08-02 03:24:47 +00:00
</v-col>
</v-row>
</v-footer>
</template>
<script lang="ts">
2021-08-02 03:24:47 +00:00
import { defineComponent } from "@nuxtjs/composition-api";
export default defineComponent({
setup() {
2021-08-02 03:24:47 +00:00
return {};
},
});
</script>