getparthenon / monorepo

Monorepo for Parthenon development
https://getparthenon.com
GNU General Public License v3.0
4 stars 1 forks source link

[UI] Programable forms #13

Closed that-guy-iain closed 4 months ago

that-guy-iain commented 1 year ago

Problem

Creating forms is generally mundane and repetitive and creating your own form elements is time-consuming.

Solution

Provide an easy and extendable Vue Form library that allows developers to quickly build highly interactive forms.

Example

<Form>
  <TextField v-model="name" label="Name" />
  <PasswordField v-model="password" label="password" min-length="8" max-length="32" />
  <SubmitButton>Submit</SubmitButton>
</Form>