()
| 7 | let dummy |
| 8 | const vm = new Vue({ |
| 9 | setup() { |
| 10 | const ref1 = ref(null) |
| 11 | watchEffect(() => { |
| 12 | dummy = ref1.value |
| 13 | }) |
| 14 | |
| 15 | return { |
| 16 | bar: ref1, |
| 17 | } |
| 18 | }, |
| 19 | template: `<div> |
| 20 | <test ref="bar"></test> |
| 21 | </div>`, |
nothing calls this directly
no test coverage detected
searching dependent graphs…