MWF.xApplication.process.FormDesigner.Module = MWF.xApplication.process.FormDesigner.Module || {};
MWF.xDesktop.requireApp("process.FormDesigner", "Module.Elinput", null, false);
MWF.xApplication.process.FormDesigner.Module.Elnumber = MWF.FCElnumber = new Class({
Extends: MWF.FCElinput,
Implements: [Options, Events],
options: {
"style": "default",
"propertyPath": "../x_component_process_FormDesigner/Module/Elnumber/elnumber.html"
},
_initModuleType: function(){
this.className = "Elnumber";
this.moduleType = "element";
this.moduleName = "elnumber";
},
_createElementHtml: function(){
//var html = "";
var html = "";
if (this.json.vueSlot) html += this.json.vueSlot;
html += "";
return html;
}
});