<UForm> on submit no form data

I am trying to use UForm but even just the simplest <UForm @submit.prevent="foo" :transform="false"> results in foo receiving an empty event.data (i.e. it is
undefined
), and accessing form directly either via refs on the inputs, or using new FormData(event.target) also results in no data. Am I doing something wrong here?
Was this page helpful?