2016-07-18 21:16:35 +08:00

7 lines
113 B
JavaScript

module.exports = function* () {
var view = 'sjs.html';
yield this.render(view, {
foo: '"hello"'
});
};