2021-07-31 22:45:28 +00:00
|
|
|
<template>
|
2021-08-02 03:24:47 +00:00
|
|
|
<v-footer color="primary lighten-1" padless app>
|
|
|
|
<v-row justify="center" align="center" dense no-gutters>
|
|
|
|
<v-col class="primary py-2 text-center white--text" cols="12">
|
|
|
|
<v-btn dark icon href="https://github.com/hay-kot/mealie" target="_blank">
|
|
|
|
<v-icon>
|
|
|
|
{{ $globals.icons.github }}
|
|
|
|
</v-icon>
|
|
|
|
</v-btn>
|
|
|
|
{{ new Date().getFullYear() }} — <strong>Mealie</strong>
|
|
|
|
</v-col>
|
|
|
|
</v-row>
|
|
|
|
</v-footer>
|
2021-07-31 22:45:28 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2021-08-02 03:24:47 +00:00
|
|
|
import { defineComponent } from "@nuxtjs/composition-api";
|
2021-07-31 22:45:28 +00:00
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
setup() {
|
2021-08-02 03:24:47 +00:00
|
|
|
return {};
|
|
|
|
},
|
|
|
|
data: () => ({
|
|
|
|
links: ["Home", "About Us", "Team", "Services", "Blog", "Contact Us"],
|
|
|
|
}),
|
|
|
|
});
|
2021-07-31 22:45:28 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
</style>
|