老师和各位同学请问这个获取章节名字getSectionName
来源:5-5 阅读进度功能实现(保存阅读进度功能)
looklookme
2021-03-21
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
}
}
}
},
写回答
2回答
-
力量接近神
2021-03-22
报什么错?vue提醒computed必须有一个返回值吗?试试在getSectionName()这个方法最后return一个空字符串
00 -
looklookme
提问者
2021-03-21
一直报错,请问该如何修改
00
相似问题