mirror of
https://github.com/mealie-recipes/mealie.git
synced 2026-02-26 01:33:12 -05:00
18 lines
220 B
Vue
18 lines
220 B
Vue
<template>
|
|
<div>
|
|
<RecentRecipes />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import RecentRecipes from "../components/UI/RecentRecipes";
|
|
|
|
export default {
|
|
components: {
|
|
RecentRecipes,
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style>
|
|
</style> |