form render
1.0.0
Yet another form render solution for vue
You might want to run the example to see what it can do
# We assume that you have already installed the required dependencies.
# Build library
yarn build
# Run example
yarn exampleFormRender expose the Config type you can use to type-check your form config:
// form-config.ts
import { Config } from 'form-render'
const config: Config = {
props: {},
items: [...]
}
export default configIt also works in .js file:
/** @type {import('form-render').Config} */
const config = {
props: {},
items: [...]
}
export default configgit checkout -b my-new-featuregit commit -am 'Add some feature'git push origin my-new-featureThis repo(form-render) won't exist without the inspirations from following projects or articles:
form-render © EVILLT, Released under the MIT License.
Authored and maintained by EVILLT with help from contributors (list).
evila.me · GitHub @evillt · Twitter @evillt