vue.js 2 how to watch store values from vuex

后端 未结 18 2254
傲寒
傲寒 2020-11-27 10:26

I am using vuex and vuejs 2 together.

I am new to vuex, I want to watch a store variable change.

I want t

18条回答
  •  暗喜
    暗喜 (楼主)
    2020-11-27 10:54

    You can also use mapState in your vue component to direct getting state from store.

    In your component:

    computed: mapState([
      'my_state'
    ])
    

    Where my_state is a variable from the store.

提交回复
热议问题