1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-07-19 05:09:40 +02:00
mealie/frontend.old/src/pages/404Page.vue
2021-07-31 14:00:28 -08:00

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>