thinkjs/lib/View/IndexController.js
2014-04-01 19:12:34 +08:00

13 lines
210 B
JavaScript

/**
* controller
* @return
*/
module.exports = Controller(function(){
"use strict";
return {
indexAction: function(){
//render View/Home/index_index.html file
this.display();
}
};
});