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 example
FormRender 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 config
It also works in .js
file:
/** @type {import('form-render').Config} */
const config = {
props: {},
items: [...]
}
export default config
git checkout -b my-new-feature
git commit -am 'Add some feature'
git push origin my-new-feature
This 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