```vue
<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 文档里也没找到有这种用法的说明,有大佬知道吗
举报· 66 次点击
登录 注册 站外分享
2 条回复  
jones2000 小成 2024-9-26 11:20:39
ResizeObserver 直接用这个原生,就可以监听 dom 的变动。
344457769 小成 2024-9-26 11:24:48
应该是 renderjs 参考 WXS 的实现

https://zh.uniapp.dcloud.io/tutorial/renderjs.html
https://developers.weixin.qq.com/miniprogram/dev/framework/view/interactive-animation.html
返回顶部