docs: add content

This commit is contained in:
Hans Pagel
2020-12-03 16:52:54 +01:00
parent f19a303908
commit e09273a056
10 changed files with 105 additions and 47 deletions

View File

@@ -70,7 +70,13 @@ export default {
},
nextPage() {
return this.flattenedItems[this.currentIndex + 1]
let nextIndex = this.currentIndex + 1
while (this.flattenedItems[nextIndex]?.skip) {
nextIndex += 1
}
return this.flattenedItems[nextIndex]
},
previousPage() {