Vue.js的动态表单生成器 – vue-generators

Vue.js的动态表单生成器 – vue-generators

插件名称:vue-generators

发布时间:2020年7月27日

插件作者:vue-generators

官网 演示 GitHub下载

Vue.js的轻量级,易于扩展的,基于JSON模式的表单生成器组件,支持自定义样式,内置字段验证器,

特征

  • 基于模式的反应形式
  • 多对象编辑
  • 21种字段类型
  • 内置验证器
  • 核心和完整捆绑包(压缩后分别为41kb和50kb)
  • 自举友好模板
  • 可定制的样式
  • 可以使用自定义字段轻松扩展
  • …等等

安装和下载:

# NPM
$ npm install vue-form-generator --save

用法:

var VueFormGenerator = window.VueFormGenerator;

var vm = new Vue({
  el: "#app",
  components: {
    "vue-form-generator": VueFormGenerator.component
  },

  methods: {
    prettyJSON: function(json) {
      if (json) {
        json = JSON.stringify(json, undefined, 4);
        json = json.replace(/&/g, "&").replace(/</g, "<").replace(/>/g, ">");
        return json.replace(/("(\\u[a-zA-Z0-9]{4}|\\[^u]|[^\\"])*"(\s*:)?|\b(true|false|null)\b|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?)/g, function (match) {
          var cls = "number";
          if (/^"/.test(match)) {
            if (/:$/.test(match)) {
              cls = "key";
            } else {
              cls = "string";
            }
          } else if (/true|false/.test(match)) {
            cls = "boolean";
          } else if (/null/.test(match)) {
            cls = "null";
          }
          return "<span class=\"" + cls + "\">" + match + "</span>";
        });
      }
    }
  },

  data: {
    model: {
      id: 1,
      name: "John Doe",
      password: "J0hnD03!x4",
      skills: [
        "Javascript",
        "VueJS"
      ],
      email: "john.doe@gmail.com",
      status: true
    },
    schema: {
      fields: [
        {
          type: "input",
          inputType: "text",
          label: "ID",
          model: "id",
          readonly: true,
          featured: false,
          disabled: true
        },
        {
          type: "input",
          inputType: "text",
          label: "Name",
          model: "name",
          readonly: false,
          featured: true,
          required: true,
          disabled: false,
          placeholder: "User's name",
          validator: VueFormGenerator.validators.string
        },
        {
          type: "input",
          inputType: "password",
          label: "Password",
          model: "password",
          min: 6,
          required: true,
          hint: "Minimum 6 characters",
          validator: VueFormGenerator.validators.string
        },  
        {
          type: "input",
          inputType: "email",
          label: "E-mail",
          model: "email",
          placeholder: "User's e-mail address",
          validator: VueFormGenerator.validators.email
        },          
        {
          type: "checklist",
          label: "Skills",
          model: "skills",
          required: true,
          values: [
            "HTML5",
            "Javascript",
            "CSS3",
            "CoffeeScript",
            "AngularJS",
            "ReactJS",
            "VueJS"
          ],
          validator: VueFormGenerator.validators.array
        },
        {
          type: "checkbox",
          label: "Status",
          model: "status",
          multi: true,
          readonly: false,
          featured: false,
          disabled: false,
          default: true
        }     
      ]
    },

    formOptions: {
      validateAfterLoad: true,
      validateAfterChanged: true
    }
  }
});
相关插件