Alternative to useAsyncData in Nuxt When SSR Is Disabled

What should I use in a Nuxt environment where SSR is disabled?
I know that when SSR is enabled, we can use useAsyncData as a wrapper for third-party libraries. It provides helpful variables like pending, status, error, and data, and it also prevents unnecessary additional calls. I’d like to have a similar wrapper for third-party libraries and also keep access to those returned variables (pending, status, error, data).

So, what should I use in environments where SSR is not enabled?
Was this page helpful?