vuetify-form-generator
Vuetify Form Generator
Generated using vue-cli-template-library.
Installation
npm install vuetify-form-generator
vuetify-form-generator can be used as a module in both CommonJS and ES modular environments.
When in non-modular environment, vuetify-form-generator will register all the components to vue by itself.
ES6
import { HelloWorld } from 'vuetify-form-generator';
export default {
...
components: {
HelloWorld
},
...
};
import ModuleLibrary from 'vuetify-form-generator';
Vue.use(ModuleLibrary);
CommonJS
var Vue = require('vue');
var ModuleLibrary = require('vuetify-form-generator');
var YourComponent = Vue.extend({
...
components: {
'hello-world': ModuleLibrary.HelloWorld
},
...
});
var Vue = require('vue');
var ModuleLibrary = require('vuetify-form-generator');
Vue.use(ModuleLibrary);
Browser
<script src="path/to/vue/vue.min.js"></script>
<script src="path/to/vuetify-form-generator/dist/vuetify-form-generator.min.js"></script>
After that, you can use it in your templates:
<hello-world></hello-world>
Changelog
See the GitHub release history.
Contributing
See CONTRIBUTING.md.