thinkjs/template/controller/es6_index.js
2015-08-25 17:43:53 +08:00

14 lines
236 B
JavaScript

'use strict';
import Base from './base.js';
export default class extends Base {
/**
* index action
* @return {Promise} []
*/
indexAction(){
//auto render template file index_index.html
return this.display();
}
}