This commit is contained in:
2024-03-01 20:28:14 +08:00
commit 076c21dc36
491 changed files with 84482 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
import WikiPage from './wikiPage/index';
// const WikiPage = require('./wikiPage/index')
module.exports = function() {
this.bindHook('sub_nav', function(app) {
app.wiki = {
name: 'Wiki',
path: '/project/:id/wiki',
component: WikiPage
};
});
};