()
| 728 | components: { |
| 729 | Child: { |
| 730 | setup() { |
| 731 | return () => |
| 732 | show.value |
| 733 | ? h('div', { class: 'test' }, 'child') |
| 734 | : createCommentVNode('v-if', true) |
| 735 | }, |
| 736 | }, |
| 737 | }, |
| 738 | setup: () => { |
nothing calls this directly
no test coverage detected