()
| 536 | let foo: any |
| 537 | const App = { |
| 538 | setup() { |
| 539 | const flag = ref(true) |
| 540 | foo = () => { |
| 541 | flag.value = false |
| 542 | } |
| 543 | onServerPrefetch(() => (flag.value = false)) |
| 544 | return { flag } |
| 545 | }, |
| 546 | components: { |
| 547 | Comp, |
| 548 | }, |
nothing calls this directly
no test coverage detected