Vue Form Repeater
Install
NPM
Installing with npm is recommended and it simply works :
npm i vue_form_repeater
Download
You can download latest version from the Github: Download
Quick start
To use in your project, just import vue_form_repeater
and install into Vue.
import vfr from 'vue_form_repeater';
Vue.use(vfr);
then you should just add any input you want in slot
. For Example :
<vue-form-repeater>
<div class="col">
<div class="form_group">
<div class="form_label">
<label class="label">Name</label>
</div>
<div class="form_control">
<input type="text" nclass="form-control" >
</div>
</div>
</div>
</vue-form-repeater>