vue中监听vuex state变化,亲测可用
Posted changlun
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue中监听vuex state变化,亲测可用相关的知识,希望对你有一定的参考价值。
import {mapGetters} from ‘vuex‘ computed: { ...mapGetters([ ‘showChip‘ ]) }, watch: { showChip(newVal) { this.chipInState = newVal } }
//试了几种方案,只有这个起效果了,记录一下。
以上是关于vue中监听vuex state变化,亲测可用的主要内容,如果未能解决你的问题,请参考以下文章