Closed
Description
current sidebar only support
.
├─ README.md
├─ contact.md
├─ about.md
├─ foo/
│ ├─ README.md
│ ├─ one.md
│ └─ two.md
└─ bar/
├─ README.md
├─ three.md
└─ four.md
but can support this?
├─ README.md
├─ contact.md
├─ about.md
├─ foo/
| ├─foo1/
| | ├─ README.md
| ├─foo2/
| | ├─ README.md
│ ├─ README.md
│ ├─ one.md
│ └─ two.md
└─ bar/
├─ README.md
├─ three.md
└─ four.md
I find vuepress/lib/default-theme/util.js
if (isNested) {
console.error(
'[vuepress] Nested sidebar groups are not supported. ' +
'Consider using navbar + categories instead.'
)
}