Skip to content

Instantly share code, notes, and snippets.

@c0depanda
Created April 23, 2018 10:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save c0depanda/a4c8b13090aa2449bb77f757b2dba65f to your computer and use it in GitHub Desktop.
Save c0depanda/a4c8b13090aa2449bb77f757b2dba65f to your computer and use it in GitHub Desktop.
module.exports = {
themeConfig: {
nav: [
// Normal Links
{ text: 'Guide', link: '/guide/' },
{ text: 'External', link: 'https://google.com' },
// Links with dropdown
{
text: 'Languages',
items: [
{ text: 'Chinese', link: '/language/chinese' },
{ text: 'Japanese', link: '/language/japanese' }
]
},
// Grouped Items inside dropdown
{
text: 'Languages',
items: [
{
text: 'Group1',
items: [
{ text: 'Chinese', link: '/language/chinese' },
{ text: 'Japanese', link: '/language/japanese' }
]
},
]
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment