()
| 352 | const count = ref(0) |
| 353 | const Comp = { |
| 354 | setup() { |
| 355 | return () => { |
| 356 | count.value |
| 357 | return ( |
| 358 | openBlock(), |
| 359 | (block = createBlock('div', null, [ |
| 360 | createVNode( |
| 361 | 'p', |
| 362 | { onVnodeMounted: spyMounted, onVnodeBeforeUpdate: spyUpdated }, |
| 363 | '', |
| 364 | PatchFlags.NEED_PATCH, |
| 365 | ), |
| 366 | ])) |
| 367 | ) |
| 368 | } |
| 369 | }, |
| 370 | } |
| 371 | |
| 372 | render(h(Comp), root) |
nothing calls this directly
no test coverage detected