]> git.ipfire.org Git - thirdparty/vuejs/pinia.git/commitdiff
docs: missing comma (#1263)
authorMrChenYZ <767483339@qq.com>
Fri, 29 Apr 2022 06:41:35 +0000 (14:41 +0800)
committerGitHub <noreply@github.com>
Fri, 29 Apr 2022 06:41:35 +0000 (08:41 +0200)
Co-authored-by: chenyingzhou <chenyingzhou@anta.com>
packages/docs/introduction.md

index 7c299f675fe3ce2884f31a93a7a5751d2e0d596e..aecc3e8e8db10b27f6aba9c1212a6ec6c9a3456a 100644 (file)
@@ -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']),
   },