<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 文档里也没找到有这种用法的说明,有大佬知道吗
1
jones2000 54 天前
ResizeObserver 直接用这个原生,就可以监听 dom 的变动。
|
2
344457769 54 天前
|