@bharathvaj95
Front end engineer
Subscription management platform that helps untangle recurring revenue businesses from spaghetti billing.
120 +
20 +
9000 +
50 +
300 +
Currencies
Countries
Employees
Customers
Payment Gateways
<form @submit.prevent="submitForm">
  <input type="text" v-model="username">
  <input type="submit" value="Submit">
</form>new Vue({
  el:'#app',
  data:{
    username:null
  },
  methods:{
    submitForm:function(e) {
     ...
    }
  }
})This Code Pen yields
This Code Pen yields
vue-form
A simple form validation library.
vee-validate
A template-based validation library.
vue-form-generator
A schema-based form generator component.
This bin yields
<field />
<form />
<field-form />
<form/>
<signup-form />
signup_form
Form Store
<text-field-form />
<text-field />
<text-field-form/>
<text-field/>
Creates signup_form form along with validators in the store
Creates phone_no text field inside signup_form
Nothing fancy. Just renders the UI
signup_form
Form Store
<text-field-form />
<text-field />
<text-field-form/>
<text-field/>
value: "650 234 4534 "
<form/>
<signup-form />
signup_form
Form Store
<text-field-form />
<text-field-form/>
Deletes signup_form form from the store
Deletes phone_no text field from signup_form
<text-field />