mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-26 00:29:43 +02:00
18 lines
218 B
Vue
18 lines
218 B
Vue
|
<template>
|
||
|
<div>
|
||
|
<The404>
|
||
|
<h1 class="mx-auto">No Recipe Found</h1>
|
||
|
</The404>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import The404 from "./The404.vue";
|
||
|
export default {
|
||
|
components: { The404 },
|
||
|
};
|
||
|
</script>
|
||
|
|
||
|
|
||
|
|