From: Dan Kazakov Date: Thu, 5 Nov 2020 08:28:44 +0000 (+0300) Subject: chore: typo (#280) X-Git-Tag: v2.0.0-alpha.6~45 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0a1c5709adfbdb571a704319e13f395c585cc6dc;p=thirdparty%2Fvuejs%2Fpinia.git chore: typo (#280) extra column operator after return statement --- diff --git a/README.md b/README.md index ab85d2a0..a82ff243 100644 --- a/README.md +++ b/README.md @@ -105,7 +105,7 @@ export const useMainStore = defineStore({ // optional getters getters: { doubleCount() { - return this.counter * 2, + return this.counter * 2 }, // use getters in other getters doubleCountPlusOne() {