mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-19 05:09:40 +02:00
13 lines
210 B
Vue
13 lines
210 B
Vue
<template>
|
|
<v-container class="text-center">
|
|
<The404 />
|
|
</v-container>
|
|
</template>
|
|
|
|
<script>
|
|
import The404 from "@/components/Fallbacks/The404";
|
|
export default {
|
|
components: { The404 },
|
|
};
|
|
</script>
|
|
|