docs(api): fix typo in use-fetch (#7310)

This commit is contained in:
Vasily Stepanov 2022-09-07 11:23:49 +03:00 committed by GitHub
parent 1ca294e125
commit 0a775e3f70
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -94,7 +94,7 @@ const { data, pending, error, refresh } = await useFetch('/api/auth/login', {
return response._data return response._data
}, },
onResponseError({ request, response, options }) { onResponseError({ request, response, options }) {
// Pandle the response errors // Handle the response errors
} }
}) })
``` ```