Answers for "vue nuxt vuex store watch"

0

vue nuxt vuex store watch

import { mapState } from 'vuex';

export default {
    computed: {
        ...mapState(['somestate']),
        someComputedLocalState() {
            // is triggered whenever the store state changes
            return this.somestate + ' works too';
        }
    },
    watch: {
        somestate(val, oldVal) {
            // is triggered whenever the store state changes
            console.log('do stuff', val, oldVal);
        }
    }
}
Posted by: Guest on March-16-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language