3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-11 04:45:02 +00:00

More docs work - Page for Document types and done LocateUser

This commit is contained in:
Nils Blömeke 2019-07-29 18:55:32 +02:00
parent 17f605dd6d
commit 66705678a6
8 changed files with 183 additions and 0 deletions

View file

@ -35,6 +35,16 @@ export const router = new VueRouter({
path: "plugin-configuration",
component: () => import("./components/docs/PluginConfiguration.vue"),
},
{
path: "descriptions",
component: () => import("./components/docs/descriptions/Layout.vue"),
children: [
{
path: "argument-types",
component: () => import("./components/docs/descriptions/ArgumentTypes.vue"),
},
],
},
{
path: "plugins",
component: () => import("./components/docs/plugins/Layout.vue"),
@ -43,6 +53,10 @@ export const router = new VueRouter({
path: "mod-actions",
component: () => import("./components/docs/plugins/ModActions.vue"),
},
{
path: "locate-user",
component: () => import("./components/docs/plugins/LocateUser.vue"),
},
],
},
],
@ -65,4 +79,12 @@ export const router = new VueRouter({
],
},
],
scrollBehavior: function(to) {
if (to.hash) {
return {
selector: to.hash,
};
}
},
});