(props)
| 525 | defineComponent({ |
| 526 | props: ['foo'], |
| 527 | setup(props) { |
| 528 | const r = useModel(props, 'foo') |
| 529 | expectType<Ref<any>>(r) |
| 530 | |
| 531 | // @ts-expect-error |
| 532 | useModel(props, 'bar') |
| 533 | }, |
| 534 | }) |
| 535 | |
| 536 | defineComponent({ |
nothing calls this directly
no test coverage detected