提交 f6a8bfaf 编写于 作者: B big_sun_962464

Fri Jun 21 23:15:00 CST 2024 inscode

上级 5333e878
<script setup> <script setup>
import {watchEffect,shallowReadonly,readonly,ref,reactive,shallowRef,computed} from 'vue' import {watchEffect,shallowReadonly,readonly,ref,reactive,shallowRef,computed} from 'vue'
const count = ref(0) const count = ref(0)
watchEffect(()=>{ watchEffect((onCleanup)=>{
console.log(count.value) console.log(count.value)
onCleanup(()=>{
console.log('onCleanuponCleanup')
return
})
}) })
</script> </script>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册