Skip to content

Instantly share code, notes, and snippets.

@gwenaelp
Last active August 3, 2018 01:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gwenaelp/10215f24d15b9b247cbafcc26ae14158 to your computer and use it in GitHub Desktop.
Save gwenaelp/10215f24d15b9b247cbafcc26ae14158 to your computer and use it in GitHub Desktop.
import VueFormGenerator from "vue-form-generator";
export default {
fields: [{
type: "input",
inputType: "password",
label: "Password",
model: "password",
min: 6,
required: true,
hint: "Minimum 6 characters",
validator: VueFormGenerator.validators.string
}],
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment