This commit is contained in:
670788339
2025-11-13 11:24:41 +08:00
parent 3f60a85c32
commit af4e73bdf7

View File

@@ -483,12 +483,12 @@ export default {
},
// 计算第一行显示的标签前5个
firstRowTags() {
return this.hotTagsList.slice(0, 7);
return this.hotTagsList.slice(0, 8);
},
// 计算第二行显示的标签(剩余标签)
secondRowTags() {
return this.hotTagsList.slice(3);
return this.hotTagsList.slice(8);
},
},
data() {