mirror of
https://github.com/thinkjs/thinkjs.git
synced 2026-01-18 14:26:56 +00:00
14 lines
236 B
JavaScript
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();
|
|
}
|
|
} |