параметр в запросе, а в файле server/api/sounds.ts параметры пустые. Что я делаю не так?
index.vue:
const { pending, data } = await useLazyFetch("/api/sounds", {
params: {
message: "hello",
},
});
sounds.ts:
export default defineEventHandler(async (event) => {
console.log(event.context.params);
// (приходит пустой объект)
});
https://nuxt.com/docs/guide/directory-structure/server#handling-requests-with-query-parameters
Спасибо, работает 🙏🏻
Обсуждают сегодня