# vfg-field-object **Repository Path**: mirrors_kong/vfg-field-object ## Basic Information - **Project Name**: vfg-field-object - **Description**: A vue-form-generator field to handle objects - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-06-17 - **Last Updated**: 2026-05-16 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # vfg-field-object      [](https://github.com/semantic-release/semantic-release)  [](https://travis-ci.org/gwenaelp/vfg-field-object) > A vue-form-generator field to handle objects, with or without schemas. ## Examples ### Without schema  ``` { model: { object: { field1: "value1" } }, schema: { fields: [ { type: "object", label: "Object field", model: "object" } ] } } ``` ### With schema  ``` { model: { object: { field: "value1" } }, schema: { fields: [ { type: "object", label: "Object field", model: "object", schema: { fields: [ { type: "input", inputType: "number", label: "Label", model: "number" }, { type: "input", inputType: "text", label: "Field", model: "field" } ] } } ] } } ``` ## Installation ``` npm install vfg-field-object ``` vfg-field-object can be used as a module in both CommonJS and ES modular environments. When in non-modular environment, vfg-field-object will register all the components to vue by itself.
### ES6 ```js // // You can register a component manually // import { FieldObject } from 'vfg-field-object'; export default { ... components: { 'field-object': FieldObject }, ... }; // // or register the whole module with vue // import ModuleLibrary from 'vfg-field-object'; // Install this library Vue.use(ModuleLibrary); ``` ### CommonJS ```js // // You can register a component manually // var Vue = require('vue'); var ModuleLibrary = require('vfg-field-object'); var YourComponent = Vue.extend({ ... components: { 'field-object': ModuleLibrary.FieldObject }, ... }); // // or register the whole module with vue // var Vue = require('vue'); var ModuleLibrary = require('vfg-field-object'); // Install this library Vue.use(ModuleLibrary); ``` ### Browser ```html ``` ### After that, you can use it with Vue Form Generator: ```json schema: { fields: [ { type: "object", label: "My object", model: "myObject" } ] } ``` ## Changelog See the GitHub [release history](https://github.com/gwenaelp/vfg-field-object/releases). ## Contributing See [CONTRIBUTING.md](.github/CONTRIBUTING.md). > Generated using [vue-cli-template-library](https://github.com/julon/vue-cli-template-library).