From: MrChenYZ <767483339@qq.com> Date: Fri, 29 Apr 2022 06:41:35 +0000 (+0800) Subject: docs: missing comma (#1263) X-Git-Tag: @pinia/nuxt@0.1.9~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0d65f9e1a0f07569cf9f70b16834353aea72ba81;p=thirdparty%2Fvuejs%2Fpinia.git docs: missing comma (#1263) Co-authored-by: chenyingzhou --- 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']), },