Skip to content

Instantly share code, notes, and snippets.

@hibuno
Created January 27, 2018 02:25
Show Gist options
  • Select an option

  • Save hibuno/c0808d72372b01dc7b6c88b388b02db0 to your computer and use it in GitHub Desktop.

Select an option

Save hibuno/c0808d72372b01dc7b6c88b388b02db0 to your computer and use it in GitHub Desktop.
Add function load more
...
export default {
methods : {
loadMore () {
this.posts = []
this.current += 9
this.allPost.map((item, key) => item.description !== null && this.posts.length < this.current ? this.posts.push(item) : '')
}
},
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment