Files
yapi/exts/yapi-plugin-test/client.js
2024-03-01 20:28:14 +08:00

11 lines
184 B
JavaScript

function hander(routers) {
routers.test = {
name: 'test',
component: ()=> 'hello world.'
};
}
module.exports = function() {
this.bindHook('sub_setting_nav', hander);
};