From 0d65f9e1a0f07569cf9f70b16834353aea72ba81 Mon Sep 17 00:00:00 2001 From: MrChenYZ <767483339@qq.com> Date: Fri, 29 Apr 2022 14:41:35 +0800 Subject: [PATCH] docs: missing comma (#1263) Co-authored-by: chenyingzhou --- packages/docs/introduction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/docs/introduction.md b/packages/docs/introduction.md index 7c299f67..aecc3e8e 100644 --- a/packages/docs/introduction.md +++ b/packages/docs/introduction.md @@ -99,7 +99,7 @@ export default { // other computed properties // ... // gives access to this.counterStore and this.userStore - ...mapStores(useCounterStore, useUserStore) + ...mapStores(useCounterStore, useUserStore), // gives read access to this.count and this.double ...mapState(useCounterStore, ['count', 'double']), }, -- 2.47.3