From 1b48cc95fd7fe47d607832017f1cfb483721121d Mon Sep 17 00:00:00 2001 From: Robert Fridzema Date: Fri, 28 Jul 2023 12:14:40 +0200 Subject: [PATCH] Update README.md Tiny typo... --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 903f1f8..890296d 100644 --- a/README.md +++ b/README.md @@ -178,7 +178,7 @@ const user = { const user2 = computed(() => store.state.auth.user); // USER EXAMPLE 3; User object from an Asynchronous {FUNCTION} / {PROMISE}: -// Using Async/Promise requires instance of vue-router, the function will be auto hooked to beforeEach() peroperty of vue-router +// Using Async/Promise requires instance of vue-router, the function will be auto hooked to beforeEach() property of vue-router const user3 = () => { const authUserId = 1; // ID of authenticated user return axios.get(`api/users/${authUserId}`)