mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-12-02 08:34:17 -05:00
* Translations + danish * changed back proxy target to use ENV * Resolved more merge conflicts * Removed test in translation * Documentation of translations * Updated translations * removed old packages Co-authored-by: Hayden <64056131+hay-kot@users.noreply.github.com>
23 lines
487 B
Vue
23 lines
487 B
Vue
<template>
|
|
<div class="text-center">
|
|
<v-row>
|
|
<v-col cols="2"></v-col>
|
|
<v-col>
|
|
<v-card height="">
|
|
<v-card-text>
|
|
<h1>{{$t('404.page-not-found')}}</h1>
|
|
</v-card-text>
|
|
<v-btn text block @click="$router.push('/')"> {{$t('404.take-me-home')}} </v-btn>
|
|
</v-card>
|
|
</v-col>
|
|
<v-col cols="2"></v-col>
|
|
</v-row>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
</style> |