computed: { doneTodosCount () { return this.$store.getters.doneTodosCount } }, watch:{ doneTodosCount(value) { console.log(`My store value for 'doneTodosCount' changed to ${value}`); } }