vfg-field-matrix

A matrix field for vue-form-generator

Usage no npm install needed!

<script type="module">
  import vfgFieldMatrix from 'https://cdn.skypack.dev/vfg-field-matrix';
</script>

README

vfg-field-matrix

A matrix field for vue-form-generator

Installation

npm install vfg-field-matrix

ES6

//
// You can register a component manually
//
import { FieldMatrix } from 'vfg-field-matrix'

export default {
  ...
  components: {
    'field-matrix': FielMatrixd
  },
  ...
};

//
// or register the whole module with vue
//
import VfgFieldMatrix from 'vfg-field-matrix'

// Install this library
Vue.use(VfgFieldMatrix);