当前位置:首页 > 技术杂谈 > 正文

vue中监听vuex state变化,亲测可用

2024-03-31 技术杂谈

import {mapGetters} from ‘vuex‘

computed: {
        ...mapGetters([
            ‘showChip‘
        ])
},
watch: {
        showChip(newVal) {
            this.chipInState = newVal
        }
}
//试了几种方案,只有这个起效果了,记录一下。

温馨提示: 本文由Jm博客推荐,转载请保留链接: https://www.jmwww.net/a/17047.html