CRMEB/public/system/js/create.js
2018-12-31 13:39:11 +08:00

24 lines
457 B
JavaScript

(function(global,factory){
})(this,function(){"use strict";
var createForm = function(h){
this.h = h;
return this;
};
var getProps = {
input(options){
let props = {};
options
}
};
createForm.prototype = {
/**
* @param opt
*/
makeInput(opt){
return this.h('i-input',{
props:opt.props
})
}
};
});