#Template#.html
375 Bytes
<div id="page-#{id}#" class="page out" data-title="#{text}#">
	<div id="#{id}#-a"></div>
	<div id="#{id}#-b"></div>
</div>
<script>
require(["#{id}#"], function(#{id}#) {
	new #{id}#({
		el: "#{id}#-a"
	}).render();
   	
	new #{id}#({
		el: "#{id}#-b",
		option: {
			content : "当前时间",
			click: function(){
				alert(new Date());
			}
		}
	}).render();
});
</script>