From 8f5691be8d8dc06e0059e7cae2b54141f454d34d Mon Sep 17 00:00:00 2001 From: George Tsiolis Date: Mon, 20 Jul 2020 13:05:06 +0300 Subject: [PATCH] docs: merge plugin-related navigation items (#5655) [ci skip] --- docs/.vuepress/config.js | 49 +++++++++++++++++++++++++++++++--------- 1 file changed, 38 insertions(+), 11 deletions(-) diff --git a/docs/.vuepress/config.js b/docs/.vuepress/config.js index 8f701a0198..cade44a00e 100644 --- a/docs/.vuepress/config.js +++ b/docs/.vuepress/config.js @@ -72,20 +72,47 @@ module.exports = { text: 'Config Reference', link: '/config/' }, - { - text: 'Plugin Dev Guide', - items: [ - { text: 'Plugin Dev Guide', link: '/dev-guide/plugin-dev.md' }, - { text: 'UI Plugin Info', link: '/dev-guide/ui-info.md' }, - { text: 'UI Plugin API', link: '/dev-guide/ui-api.md' }, - { text: 'UI Localization', link: '/dev-guide/ui-localization.md' } - ] - }, { text: 'Plugins', items: [ - { text: 'Core plugins', link: '/core-plugins/' }, - { text: 'Browse plugins', link: 'https://awesomejs.dev/for/vue-cli/' } + { + text: 'Configuration', + items: + [ + { text: 'Core', link: '/core-plugins/' }, + ] + }, + { + text: 'Discover', + items: + [ + { text: 'Browse', link: 'https://awesomejs.dev/for/vue-cli/' } + ] + }, + { + text: 'Development', + items: + [ + { text: 'Guide', link: '/dev-guide/plugin-dev.md' }, + ] + }, + { + text: 'API', + items: + [ + { text: 'Plugin', link: '/dev-guide/plugin-api.md' }, + { text: 'Generator', link: '/dev-guide/generator-api.md' }, + ] + }, + { + text: 'UI', + items: + [ + { text: 'Info', link: '/dev-guide/ui-info.md' }, + { text: 'API', link: '/dev-guide/ui-api.md' }, + { text: 'Localization', link: '/dev-guide/ui-localization.md' } + ] + }, ] }, {