Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.87 KB | None | 0 0
  1. {
  2. "data":
  3. {
  4.  
  5. "firstname":
  6. {
  7. "type": "text",
  8. "component": "FintefyInput",
  9. "label": "Nombre",
  10. "placeholder": "Ej. Juan",
  11. "rules":
  12. {
  13. "required": true
  14. },
  15. "value": ""
  16. },
  17. "lastname":
  18. {
  19. "type": "text",
  20. "component": "FintefyInput",
  21. "label": "Apellidos",
  22. "placeholder": "Ej. Pérez",
  23. "rules":
  24. {
  25. "required": true
  26. },
  27. "value": ""
  28. },
  29. "birthday":
  30. {
  31. "type": "text",
  32. "component": "FintefyInput",
  33. "label": "Fecha de nacimiento",
  34. "placeholder": "",
  35. "rules":
  36. {
  37. "required": true
  38. },
  39. "value": ""
  40. },
  41. "email":
  42. {
  43. "type": "email",
  44. "component": "FintefyInput",
  45. "label": "Correo electrónico",
  46. "placeholder": "Ej. juan.perez@gmail.com",
  47. "rules":
  48. {
  49. "required": true
  50. },
  51. "value": ""
  52. },
  53. "address":
  54. {
  55. "type": "text",
  56. "component": "FintefyInput",
  57. "label": "Dirección",
  58. "placeholder": "Paseo de la Reforma 223",
  59. "rules":
  60. {
  61. "required": true
  62. },
  63. "value": ""
  64. },
  65. "framework":
  66. {
  67. "type": "text",
  68. "component": "FintefyAutocomplete",
  69. "label": "Framework",
  70. "placeholder": "Ej. React",
  71. "rules":
  72. {
  73. "required": true
  74. },
  75. "value": "",
  76. "data": ["Angular", "Angular 2", "Aurelia", "Backbone", "Ember", "jQuery", "Meteor", "Node.js", "Polymer", "React", "RxJS", "Vue.js"]
  77. },
  78. "fruit":
  79. {
  80. "type": "text",
  81. "component": "FintefyList",
  82. "label": "Fruta",
  83. "placeholder": "Ej. Manzana",
  84. "rules":
  85. {
  86. "required": true
  87. },
  88. "value": [],
  89. "data": ["Apple", "Orange", "Banana", "Cherry", "Watermelon", "Mango", "Strawberry", "Passion Fruit", "Coconut", "Pineapple", "Kiwi", "Grape"]
  90. }
  91. }
  92. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement