0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【Vuex】同じmutationsが多数繰り返されるエラーが発生していたら確認した方がいいこと

Posted at

はじめに

先日、こちらの記事を書きました。
【Vuex】mapState, mapGetters, mapMutations, mapActionsの最低限の使い方まとめ - Qiita

上記に関連して、記事を書こうと思ったきっかけになったエラーについても記録として残しておこうと思います。

以下のように同じmutationsが繰り返されていたら怪しんでみて下さい:sweat_smile:

image.png

環境

OS: macOS Catalina 10.15.1
Vue: 2.6.10
vuex: 3.1.2

エラー原因

computedプロパティ内に...mapMutationsを書いてしまっている。

methodsプロパティ内に書くのが正しいです。

:x: ダメな例

Anything.vue
//...
    computed: {
      ...mapMutations([
        'anyMutation',
      ]),
    },
    methods: {
      anyMethod() {
        this.anyMutation()
      }
    }
//..

:o: 良い例

Anything.vue
//..
    methods: {
      ...mapMutations([
        'anyMutation',
      ]),
      anyMethod() {
        this.anyMutation()
      }
    }
//..

これで無事読み込まれます。

おわりに

最後まで読んで頂きありがとうございました:bow_tone1:

どなたかの参考になれば幸いです:relaxed:

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?