We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 865bd1b + f139667 commit df6c7c8Copy full SHA for df6c7c8
mixins/moduleTransiton.js
@@ -7,7 +7,7 @@ export default {
7
mounted () {
8
this.recoShowModule = true
9
},
10
- destoryed () {
+ destroyed () {
11
this.recoShowModule = false
12
}
13
mixins/posts.js
@@ -7,8 +7,8 @@ export default {
$categories: { list: articles }
} = this
- let posts = articles.reduce((allData, currnetData) => {
- return [...allData, ...currnetData.pages]
+ let posts = articles.reduce((allData, currentData) => {
+ return [...allData, ...currentData.pages]
}, [])
14
posts = filterPosts(posts)
0 commit comments