From 20ab8b1b51af560743bee47eaaaa83e460c2f4c4 Mon Sep 17 00:00:00 2001 From: new1333 <76203329+new1333@users.noreply.github.com> Date: Tue, 1 Mar 2022 18:10:18 +0800 Subject: [PATCH] docs: Update actions.md (#1103) --- packages/docs/core-concepts/actions.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/docs/core-concepts/actions.md b/packages/docs/core-concepts/actions.md index 833e62ff..a627e22f 100644 --- a/packages/docs/core-concepts/actions.md +++ b/packages/docs/core-concepts/actions.md @@ -147,8 +147,8 @@ export default { }, methods: { incrementAndPrint() { - counterStore.increment() - console.log('New Count:', counterStore.count) + this.counterStore.increment() + console.log('New Count:', this.counterStore.count) }, }, } -- 2.47.3