From f9f730ab7b40188bff18342289bfc66bb3f244a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A9ry=20Debongnie?= Date: Thu, 22 Aug 2019 13:05:16 +0200 Subject: [PATCH] [DOC] add some info about return value from actions --- doc/store.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/store.md b/doc/store.md index af487f50..1cb45f44 100644 --- a/doc/store.md +++ b/doc/store.md @@ -127,6 +127,9 @@ arbitrary number of arguments. store.dispatch("login", someInfo); ``` +Note that anything returned by an action will also be returned by the `dispatch` +call. + ### Getters Usually, data contained in the store will be stored in a normalized way. For