[Vuejs]-Moving vue-grid-item results in sendind multiple API requests

1👍

I found the issue! Thanks to this post https://github.com/nuxt/nuxt/issues/15741 I realized that I was sending reactive property to useFetch body, and every time it changes, the request was resent. I just used JSON.stringify(body) and it fixed the issue.

Leave a comment