setup() { const num = ref(0); watchEffect(() => { console.log("num change will not trigger this effect"); num.value = 1; }); setTimeout(() => { num.value++; } ...
確定! 回上一頁