thinkjs/lib/View/IndexController.js
2014-07-04 07:16:01 +08:00

13 lines
236 B
JavaScript

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