UNPKG

generator-clam

Version:
33 lines (28 loc) 522 B
/** * @fileoverview <%= projectName %> - <%= modName %>. * @author <%=author %><<%=email %>>. */ /** * KISSY.use('<%= packageName %>/<%= mojoName %>/index',function(S,<%= modName %>){ * new <%= modName %>(); * }); */ KISSY.add(function(S,Base) { var <%= modName %> = Base.extend({ initializer:function(){ var self = this; // Your Code alert('ok'); } },{ ATTRS: { // 这里是初始参数和默认值 A:{ value:'abc' } } }); return <%= modName %>; },{ requires:['base'] });