useFetch vs $fetch

Hello,

First of all, I understand that :
  • useFetch = useAsyncData + $fetch
  • $fetch is pre-hydration (if awaited, even resolved pre-hydration)
That being said, with SSR fully disabled, is there any perk using useFetch instead of $fetch ?

SSR is disabled for me because :
  • Nothing will be publicly accessible anyway, no SEO needed
  • For the type of project, it's more important to reduce the server workload and the client will be ok to "wait the extra time"
Thanks 🙂
Was this page helpful?