()
| 280 | const root = document.createElement('div') |
| 281 | const vm = createApp({ |
| 282 | setup() { |
| 283 | const scope = new EffectScope() |
| 284 | scope.run(() => { |
| 285 | watchEffect(() => (dummy = counter.num)) |
| 286 | watchEffect(() => (doubled = counter.num * 2)) |
| 287 | }) |
| 288 | }, |
| 289 | }) |
| 290 | vm.mount(root) |
| 291 |
nothing calls this directly
no test coverage detected
searching dependent graphs…