From e6756382006857dbf56fa28289659053a2e7b59e Mon Sep 17 00:00:00 2001 From: Jason Rial Date: Wed, 5 Aug 2020 12:34:30 -0500 Subject: [PATCH 1/2] Update using-with-vuex.md --- docs/guides/using-with-vuex.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/guides/using-with-vuex.md b/docs/guides/using-with-vuex.md index d33a94f45..10e5b749b 100644 --- a/docs/guides/using-with-vuex.md +++ b/docs/guides/using-with-vuex.md @@ -233,7 +233,8 @@ describe('MyComponent.vue', () => { myModule: { state, actions, - getters: myModule.getters + getters: myModule.getters, + namespaced: true, } } }) From 286580dfda2c0e593b51d92ffb8a34fa0a7cbc14 Mon Sep 17 00:00:00 2001 From: Lachlan Date: Thu, 10 Sep 2020 11:37:45 +1000 Subject: [PATCH 2/2] chore: lint --- docs/guides/using-with-vuex.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/using-with-vuex.md b/docs/guides/using-with-vuex.md index 10e5b749b..039a998f8 100644 --- a/docs/guides/using-with-vuex.md +++ b/docs/guides/using-with-vuex.md @@ -234,7 +234,7 @@ describe('MyComponent.vue', () => { state, actions, getters: myModule.getters, - namespaced: true, + namespaced: true } } })