小天管理 发表于 2024年9月26日 发表于 2024年9月26日 <template> <view class="w100" :change:bb="auto" :bb="bb">测试</view> </template> <script> export default { data() { return { bb:1, } }, methods: { auto(newValue, oldValue, ownerInstance, instance) { console.log(newValue, oldValue, ownerInstance, instance) setTimeout(() => {console.log(this.bb);this.bb = this.bb + 1;}, 2000); } } </script> 这种用法是立即执行的 watch 监听,可以检测 bb 的值的变化,实测只能监测元素上绑定的值如 bb ,uniapp 文档里也没找到有这种用法的说明,有大佬知道吗
已推荐帖子