0.1.0 • Published 5 years ago

vue-bigroom-form v0.1.0

Weekly downloads
5
License
-
Repository
-
Last release
5 years ago

目前支持的数据结构为:

{
  // x
  string: '',
  number: 0,
  boolean: null,
  data: null,
  arrayString: [''], // item 只能作为简单数据结构

  // object-x
  object: {
    string: '',
    number: 0,
    boolean: null,
    data: null,
    array: [''] // item 只能作为简单数据结构
  },

  // array-object-x,需要单独 import
  array: [
    {
      string: '',
      number: 0,
      boolean: null,
      data: null,
      array: [''] // item 只能作为简单数据结构
    }
  ],

  // array-array-x,需要单独 import
  array: [
    [''] // item 只能作为简单数据结构
  ]
}

// 不支持 array-array-object