vue.js 2 how to watch store values from vuex

后端 未结 18 2237
傲寒
傲寒 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:46

    It's as simple as:

    watch: {
      '$store.state.drawer': function() {
        console.log(this.$store.state.drawer)
      }
    }
    

提交回复
热议问题