发布网友 发布时间:2022-04-23 02:21
共5个回答
热心网友 时间:2022-04-03 14:59
如果想监听store中的数据,需使用computed属性配合:demo: 监听store中的count值。computed:{。test() {。return this.$store.state.count。}},watch:{。test:function (nl,ol) {。//此处即可监听到。}}。
热心网友 时间:2022-04-03 16:17
如果想监听store中的数据,需使用computed属性配合:
demo: 监听store中的count值
computed:{
test() {
return this.$store.state.count
}},
watch:{
test:function (nl,ol) {
//此处即可监听到
}}
热心网友 时间:2022-04-03 17:52
能不用watch就不用watch,很浪费资源,完全可以通过传值实现
请采纳
热心网友 时间:2022-04-03 19:43
一个人在家呢吗呢吗呵呵。
热心网友 时间:2022-04-03 21:51
$store.state.变量名称