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

7 lines
167 B
JavaScript

module.exports = function* () {
var view = this.query.vm ? 'shtml.vm' : 'shtml.html';
yield this.render(view, {
foo: '<img onload="xx"><h1>foo</h1>',
});
};