mirror of
https://github.com/crmeb/CRMEB.git
synced 2025-12-12 11:09:23 +00:00
24 lines
457 B
JavaScript
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
|
|
})
|
|
}
|
|
};
|
|
}); |