userFields.js 300 B

123456789101112
  1. export default {
  2. email: { type: "text", initialValue: "" },
  3. password: { type: "password", initialValue: "" },
  4. name: { type: "text", initialValue: "" },
  5. username: { type: "text", initialValue: "" },
  6. role: {
  7. type: "select",
  8. options: ["user", "admin"],
  9. initialValue: "user"
  10. }
  11. }