diff --git a/src/.vuepress/config.js b/src/.vuepress/config.js index 548323e240..abfd301b79 100644 --- a/src/.vuepress/config.js +++ b/src/.vuepress/config.js @@ -199,13 +199,35 @@ module.exports = { }, { text: 'API Reference', link: '/api/application-config' }, { - text: 'Community', - ariaLabel: 'Community Menu', + text: 'Ecosystem', items: [ - { text: 'Team', link: '/community/team/' }, - { text: 'Partners', link: '/community/partners/' }, - { text: 'Join', link: '/community/join/' }, - { text: 'Themes', link: '/community/themes/' } + { + text: 'Community', + ariaLabel: 'Community Menu', + items: [ + { text: 'Team', link: '/community/team/' }, + { text: 'Partners', link: '/community/partners/' }, + { text: 'Join', link: '/community/join/' }, + { text: 'Themes', link: '/community/themes/' } + ] + }, + { + text: 'Official Projects', + items: [ + { text: 'Vue Router', link: 'https://router.vuejs.org/' }, + { text: 'Vuex', link: 'https://vuex.vuejs.org/' }, + { text: 'Vue CLI', link: 'https://cli.vuejs.org/' }, + { + text: 'Vue Test Utils', + link: 'https://vue-test-utils.vuejs.org/' + }, + { + text: 'Devtools', + link: 'https://github.com/vuejs/vue-devtools' + }, + { text: 'Weekly news', link: 'https://news.vuejs.org/' } + ] + } ] } ], diff --git a/src/.vuepress/styles/index.styl b/src/.vuepress/styles/index.styl index 1ed44dd2bd..9950b669cb 100644 --- a/src/.vuepress/styles/index.styl +++ b/src/.vuepress/styles/index.styl @@ -166,3 +166,7 @@ color: #fff; padding: 0.25rem 0.25rem; } + +.dropdown-wrapper .nav-dropdown .dropdown-item h4 { + margin-bottom: 0.3rem!important; +}