UNPKG

vfg-field-array

Version:

A vue-form-generator field to handle arrays

17 lines (12 loc) 291 B
import FieldArray from "./components/field-array"; const LibraryModule = { FieldArray, install(Vue) { // Register components with vue Vue.component("field-array", FieldArray); } }; // Export library export default LibraryModule; // Export components export { FieldArray };