Skip to content

FEMessage/el-form-renderer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

author
chengaopan
Nov 7, 2022
f5c1a30 · Nov 7, 2022
Jul 30, 2019
Apr 23, 2019
Aug 23, 2021
Nov 7, 2022
Jul 20, 2022
Nov 23, 2019
Aug 23, 2021
Jul 20, 2022
Jan 10, 2020
Apr 23, 2019
Feb 14, 2020
Feb 19, 2020
Apr 23, 2019
Feb 17, 2020
Jul 26, 2019
Jan 10, 2020
Dec 18, 2017
Sep 9, 2021
Jul 20, 2022
Oct 18, 2019
Feb 14, 2020
Feb 14, 2020
Aug 13, 2020
Aug 13, 2020
Nov 11, 2020
Jul 14, 2020
Nov 11, 2020

Repository files navigation

el-form-renderer

Build Status NPM Download NPM Version NPM License PRs Welcome Automated Release Notes by gren

中文文档

Table of Contents

Introduction

WHAT

el-form-renderer is based on element-ui, but not limited element-ui components. On the basis of completely inheriting the form attribute of element-ui, extension is made. Some non-form components or custom components, such as picture uploading and rich text editor, can also be integrated, thus, users can render a complete form by using a piece of json.

WHY

In our daily development, there are lots page with form, and usually the form structure is similar, the logic is repeated. el-form-renderer does not have complicated logic. It only convert JSON to render form item, save time and energy to write business logic, and reduce duplicate code.

Features

  • Render form with json
  • Support integrate with custom components
  • Support batch update form data with updateForm method
  • Support setOptions method, dynamically change select options
  • Content support inputFormat , outputFormat , trim to process component's input and output values
  • Support v-model

⬆Back to Top

Links

⬆Back to Top

Quick Start

yarn add @femessage/el-form-renderer
<template>
  <el-form-renderer :content="content"></el-form-renderer>
</template>
<script>
  import ElFormRenderer from '@femessage/el-form-renderer'
  export default {
    components: {
      ElFormRenderer,
    },
    data() {
      return {
        content: [],
      }
    },
  }
</script>

⬆Back to Top

Inspiration

thanks to element-patch

Contributing

For those who are interested in contributing to this project, such as:

  • report a bug
  • request new feature
  • fix a bug
  • implement a new feature

Please refer to our contributing guide.

⬆ Back to Top

Contributors

Thanks goes to these wonderful people (emoji key):


Alvin

💻 👀 🐛 📝 🤔

levy

👀 🚇 🤔 🚧

EVILLT

💻 🐛 📝 🤔

Donald Shen

💻 📖 💡 📝

ColMugX

💻 ⚠️ 📖

OuZuYu

🐛

Han

💻 📖

yolofit

🐛

chengaopan

💻

This project follows the all-contributors specification. Contributions of any kind welcome!

License

MIT

⬆ Back to Top