From 7daf49bd2d6abbe3ba0733188dffafd25baae018 Mon Sep 17 00:00:00 2001 From: pooya parsa Date: Tue, 16 Jun 2020 21:53:54 +0200 Subject: [PATCH] mention destr --- docs/guide/usage.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/usage.md b/docs/guide/usage.md index a2b1b93..fa801c9 100644 --- a/docs/guide/usage.md +++ b/docs/guide/usage.md @@ -23,7 +23,7 @@ const res = await $http.get('https://unpkg.com/nuxt/package.json') const data = await res.json() ``` -Alternatively for json only you can use `$` prefixed shortcut: +Alternatively for json only you can use `$` prefixed shortcut that smartly parses response using [destr](https://github.com/nuxt-contrib/destr). ```js await $http.$get('https://unpkg.com/nuxt/package.json')