()
| 364 | const fn = vi.fn() |
| 365 | const comp = { |
| 366 | setup() { |
| 367 | const checked = ref() |
| 368 | return () => |
| 369 | withDirectives( |
| 370 | h('input', { |
| 371 | type: 'checkbox', |
| 372 | value: undefined, |
| 373 | 'onUpdate:modelValue': (value: any) => { |
| 374 | checked.value = value |
| 375 | }, |
| 376 | }), |
| 377 | [[vModelCheckbox, checked.value]], |
| 378 | ) |
| 379 | }, |
| 380 | } |
| 381 | |
| 382 | const root = document.createElement('div') |
nothing calls this directly
no test coverage detected