index.js 236 B

1234567891011121314
  1. 'use strict';
  2. import Base from './base.js';
  3. export default class extends Base {
  4. /**
  5. * index action
  6. * @return {Promise} []
  7. */
  8. indexAction(){
  9. //auto render template file index_index.html
  10. return this.display();
  11. }
  12. }