import {mapGetters} from ‘vuex‘ computed: { ...mapGetters([ ‘showChip‘ ]) }, watch: { showChip(newVal) { this.chipInState = newVal } }
//试了几种方案,只有这个起效果了,记录一下。
原文地址:https://www.cnblogs.com/changlun/p/12333718.html
时间: 2024-11-09 01:07:05
import {mapGetters} from ‘vuex‘ computed: { ...mapGetters([ ‘showChip‘ ]) }, watch: { showChip(newVal) { this.chipInState = newVal } }
//试了几种方案,只有这个起效果了,记录一下。
原文地址:https://www.cnblogs.com/changlun/p/12333718.html