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