()
| 503 | const foo = h('div', null, h(Child)) |
| 504 | const app = createApp({ |
| 505 | render() { |
| 506 | return show.value |
| 507 | ? (openBlock(), |
| 508 | createBlock('div', null, [(openBlock(), createBlock(foo))])) |
| 509 | : createCommentVNode('v-if', true) |
| 510 | }, |
| 511 | }) |
| 512 | |
| 513 | app.mount(root) |
nothing calls this directly
no test coverage detected