computed: {
getSectionName() {
if (this.section) {
const sectionInfo = this.currentBook.section(this.section)
if (sectionInfo && sectionInfo.href) {
// return this.currentBook.navigation.get(sectionInfo.href).label
return this.currentBook.navigation.get(sectionInfo.href).label
}
}
}
},