mock平台

client.js 184B

1234567891011
  1. function hander(routers) {
  2. routers.test = {
  3. name: 'test',
  4. component: ()=> 'hello world.'
  5. };
  6. }
  7. module.exports = function() {
  8. this.bindHook('sub_setting_nav', hander);
  9. };