service/tests/tpl.js
2025-12-12 21:20:57 +08:00

7 lines
164 B
JavaScript

import s from "apigo.cc/gojs/service"
function main(args) {
return s.tpl('tpl/page.html', { title: 'Abc' }, {
bb: text => { return '<b>' + text + '</b>' }
})
}