jquery.template:jquery模板组件化组件嵌套 源码
jquery.template.js 受启发的基于jQuery实现的极简框架。 简介 实现模板组件化写法组件的嵌入和替换完全用jquery实现 使用时,完完全全是jQuery的基本操作,对于已经会用jq的人而言,学习成本接近零。 例子 const HelloWord = { view: function(){ return [ { el: createElement('span').attr({class: 'hello-word'}).text('hello word'), events: { click: function(){ alert('hello word') } } } ] } } const Main = { view: function(){ return [ { el: createElement
用户评论