mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-26 16:49:42 +02:00
18 lines
205 B
Vue
18 lines
205 B
Vue
|
<template>
|
||
|
<div>
|
||
|
<RecentRecipes />
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import RecentRecipes from "./RecentRecipes";
|
||
|
|
||
|
export default {
|
||
|
components: {
|
||
|
RecentRecipes,
|
||
|
},
|
||
|
};
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
</style>
|