create.js 457 B

123456789101112131415161718192021222324
  1. (function(global,factory){
  2. })(this,function(){"use strict";
  3. var createForm = function(h){
  4. this.h = h;
  5. return this;
  6. };
  7. var getProps = {
  8. input(options){
  9. let props = {};
  10. options
  11. }
  12. };
  13. createForm.prototype = {
  14. /**
  15. * @param opt
  16. */
  17. makeInput(opt){
  18. return this.h('i-input',{
  19. props:opt.props
  20. })
  21. }
  22. };
  23. });