2021-07-31 14:45:28 -08:00
|
|
|
<template>
|
2025-06-20 00:09:12 +07:00
|
|
|
<v-footer
|
|
|
|
color="primary"
|
|
|
|
padless
|
|
|
|
app
|
|
|
|
>
|
|
|
|
<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-01 19:24:47 -08:00
|
|
|
<v-icon>
|
|
|
|
{{ $globals.icons.github }}
|
|
|
|
</v-icon>
|
|
|
|
</v-btn>
|
2021-10-02 12:18:01 -08:00
|
|
|
{{ new Date().getFullYear() }} — <strong> Mealie </strong>
|
2021-08-01 19:24:47 -08:00
|
|
|
</v-col>
|
|
|
|
</v-row>
|
|
|
|
</v-footer>
|
2021-07-31 14:45:28 -08:00
|
|
|
</template>
|
2023-09-14 09:01:24 -05:00
|
|
|
|
2021-10-02 12:18:01 -08:00
|
|
|
<script lang="ts">
|
2025-06-20 00:09:12 +07:00
|
|
|
export default defineNuxtComponent({
|
2021-07-31 14:45:28 -08:00
|
|
|
setup() {
|
2021-08-01 19:24:47 -08:00
|
|
|
return {};
|
|
|
|
},
|
|
|
|
});
|
2021-07-31 14:45:28 -08:00
|
|
|
</script>
|