0👍
- [Vuejs]-Konvajs + vuejs How to save changed height width of elements
- [Vuejs]-How to move the icon to the right end?
0👍
You are setting the limit on the axios call to 10. This means that you are getting 10 posts and not 98 and you only have one page.
Check this fiddle for a request limit of 100.
axios.get(`https://jsonplaceholder.typicode.com/posts?_start=${this.counter}+${this.zero}&_limit=100`).then(response => {
this.posts = response.data
})
Source:stackexchange.com