()
| 813 | |
| 814 | const Child = { |
| 815 | setup() { |
| 816 | const b = computed(() => a.value + 1) |
| 817 | const c = computed(() => b.value + 1) |
| 818 | // access |
| 819 | c.value |
| 820 | onUnmounted(() => spy(c.value)) |
| 821 | return () => {} |
| 822 | }, |
| 823 | } |
| 824 | |
| 825 | const show = ref(true) |