方法1【推荐:代码量最少】
watch: { '$store.getters.vuex变量'(d) { console.log(d); }, },
方法2
created() { this.$store.watch((state) => { console.log(state.vue变量); } },
方法3
computed: { vuex变量() { return this.$store.state.vuex变量 }, }, watch: { vuex变量(d) { console.log(d); }, },
方法4
import { mapGetters } from "vuex"; computed: { ...mapGetters(["vux变量"]), }, watch: { vux变量(d) { console.log(d); }, },
方法5
import { mapState } from "vuex"; computed: { ...mapState(["vux变量"]), }, watch: { vuex变量(d) { console.log(d); }, },