Created
January 27, 2018 02:25
-
-
Save hibuno/c0808d72372b01dc7b6c88b388b02db0 to your computer and use it in GitHub Desktop.
Add function load more
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ... | |
| 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