Skip to content

Commit 6043215

Browse files
author
reco_luan
committed
fix: change list load config's name
1 parent bac7db9 commit 6043215

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

components/Common.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,6 @@ export default {
105105
106106
computed: {
107107
absoluteSecrecy () {
108-
console.log(this.$themeConfig.keyPage.absoluteSecrecy)
109108
return this.$themeConfig.keyPage && this.$themeConfig.keyPage.absoluteSecrecy === true
110109
},
111110
// 是否显示评论

components/NoteAbstract.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</div>
1313
<div v-else-if="listLoadType === 'async'" key="async">
1414
<NoteAbstractItem
15-
v-for="(item, index) in currentPageData"
15+
v-for="(item) in currentPageData"
1616
:key="item.path"
1717
:item="item"
1818
:currentPage="currentPage"
@@ -31,7 +31,7 @@ export default {
3131
computed: {
3232
listLoadType () {
3333
const valineConfig = this.$themeConfig.valineConfig
34-
if (valineConfig && !valineConfig.hideAccessNumber) {
34+
if (valineConfig && !valineConfig.hideListAccessNumber) {
3535
return 'sync'
3636
} else {
3737
return 'async'

0 commit comments

Comments
 (0)