mirror of
https://github.com/rjNemo/meal_planner
synced 2026-06-09 11:56:45 +00:00
4 lines
131 B
TypeScript
4 lines
131 B
TypeScript
export default function useRecipeById(id: number) {
|
|
const { $client } = useNuxtApp();
|
|
return $client.recipeGet.useQuery(id);
|
|
}
|