mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-25 08:09:41 +02:00
* multiple recipes per day * fix update * meal-planner rewrite * disable meal-tests * spacing Co-authored-by: hay-kot <hay-kot@pm.me>
17 lines
218 B
Vue
17 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>
|
|
|
|
|
|
|