Form component, the form content is reset to the initial state. All edits are discarded, and the form inputs do not match the source model. This appears to happen after the Submit handler finishes. This means that in the normal flow, between submitting the updates to the server and receiving the updated state from the server response, the changed fields briefly flash to the pre-edited values. If I don't actually post the changes in the submit handler, the form fields just revert and you can see the mismatch from the component data state vs the form field values.dirty prop seems to be false, always. Not sure if this is a bug, or if I need to handle it somehow, but the dirtyFields prop is updated automatically, so that's weird.Checkbox component to work inside a form (same with Switch). If I click it, I can see that it updates the boolean v-model value to true, but the UI never updates to show checked. I can use a Switch or Checkbox to set values outside of the form state with no issues, so I assume it's either the Form component or something about the Pinia Colada state that's causing the problem.