1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-07-26 00:29:43 +02:00
mealie/frontend/src/pages/HomePage.vue

18 lines
220 B
Vue
Raw Normal View History

2020-12-24 16:37:38 -09:00
<template>
<div>
<RecentRecipes />
</div>
</template>
<script>
2021-01-08 17:09:03 -09:00
import RecentRecipes from "../components/UI/RecentRecipes";
2020-12-24 16:37:38 -09:00
export default {
components: {
RecentRecipes,
},
};
</script>
<style>
</style>