You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
zhishifufei_php/public/system/js/create.js

24 lines
457 B

9 months ago
(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
})
}
};
});