How to get all rendered fields in a Form with VeeValidate?

I’m using VeeValidate to validate my forms. I’ve got a Form component with several Field components in it.

I’m trying to get all the fields rendered inside the form, very much like when I open the Vue DevTools plugin I see a list of all rendered Field components. I’m not looking for a list of the initial values, just the actual form fields.

enter image description here

My form is currently looks like this:

<Form :validationSchema="validationSchema" :initialValues="initialValues" ref=form>
  <Field name="symbol" />
  <Field name="currency" />
  <Field name="date" />
  <Field name="quantity" />
  <Field name="price" />
  <Field name="fees" />
  <Field name="asset_type" />
  <Field name="order_type" />
</Form>