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