监听vuex变量的变化

2020-05-09  本文已影响0人  小哼唧麻
computed: {
        ...mapState({
            guideStep: state => state.guide.step
        })
    },
    watch: {
        guideStep(value, old) {
            return this.step = value;
        }
    },
上一篇 下一篇

猜你喜欢

热点阅读