mirror of
https://github.com/rjNemo/meal_planner
synced 2026-06-06 10:36:43 +00:00
4 lines
142 B
TypeScript
4 lines
142 B
TypeScript
export default function useRecipeSearch(query: string) {
|
|
const { $client } = useNuxtApp();
|
|
return $client.recipeSearch.useQuery(query);
|
|
}
|