Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
Доки смотрел - не понятно
store.watch((state) => state.searchString, (oldValue, newValue) => { console.log('search string is changing') console.log(oldValue) console.log(newValue) })
console.log(this.$store.state.mobile) //0 this.$store.watch((state) => state.mobile, (oldValue, newValue) => { console.log('search string is changing') console.log(oldValue) console.log(newValue) }) this.$store.state.mobile = 1 console.log(this.$store.state.mobile) //1 //больше никаких сообщений