Skip to content

Basic Form

This example shows the smallest Vue + Element Plus integration.

vue
<FormX ref="formRef" v-model:value="formModel" :schema="schema" />
ts
const valid = await formRef.value?.validate()
const values = formRef.value?.getValues()