From fee20734aa1bd9675bce05af4aa59b46b3da67a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Pedro=20Antunes=20Silva?= Date: Sat, 25 May 2019 09:27:44 -0300 Subject: [PATCH] docs: add missing args to logout (#362) --- docs/api/auth.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/api/auth.md b/docs/api/auth.md index f851877fd..aa32046b5 100644 --- a/docs/api/auth.md +++ b/docs/api/auth.md @@ -76,14 +76,14 @@ this.$auth.setUserToken(token) .then(() => this.$toast.success('User set!')) ``` -### `logout()` +### `logout(...args)` - Returns: `Promise` Logout active strategy. Usage varies by current scheme. ```js -await this.$auth.logout() +await this.$auth.logout(/* .... */) ``` ### `fetchUser()`