回答編集履歴

2

修正

2021/08/07 09:52

投稿

Masa-Shin
Masa-Shin

スコア269

test CHANGED
@@ -1,4 +1,4 @@
1
- `toCart`はストアのactionなので、`$store.dispatch`必要す。
1
+ `toCart`はストアのactionなので、`$store.dispatch`で呼び出す必要があります。
2
2
 
3
3
 
4
4
 

1

修正

2021/08/07 09:52

投稿

Masa-Shin
Masa-Shin

スコア269

test CHANGED
@@ -1,9 +1,9 @@
1
- `toCart`はストアのactionなので、`$store`が必要です。
1
+ `toCart`はストアのactionなので、`$store.dispatch`が必要です。
2
2
 
3
3
 
4
4
 
5
5
  ```html
6
6
 
7
- <button @click="$store.toCart(product)">Add to cart</button>
7
+ <button @click="$store.dispatch('toCart', product)">Add to cart</button>
8
8
 
9
9
  ```