Skip to content

Commit df6c7c8

Browse files
author
reco_luan
authored
Merge pull request #129 from yiliang114/develop
chore: fix typo
2 parents 865bd1b + f139667 commit df6c7c8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

mixins/moduleTransiton.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default {
77
mounted () {
88
this.recoShowModule = true
99
},
10-
destoryed () {
10+
destroyed () {
1111
this.recoShowModule = false
1212
}
1313
}

mixins/posts.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ export default {
77
$categories: { list: articles }
88
} = this
99

10-
let posts = articles.reduce((allData, currnetData) => {
11-
return [...allData, ...currnetData.pages]
10+
let posts = articles.reduce((allData, currentData) => {
11+
return [...allData, ...currentData.pages]
1212
}, [])
1313

1414
posts = filterPosts(posts)

0 commit comments

Comments
 (0)