Why am I only receiving the first page out of 61 pages in this json file with my current call? How can I retrieve all of them? Is there a way to use axios in a loop or another method?
<template>
<div id="app">
<thead>
</thead>
<tbody>
{{items}}
</tbody>
</div>
</template>
<script>
import axios from 'axios';
export default {
data() {
return {
items:[]
}
},
created() {
axios.get(`https://zbeta2.mykuwaitnet.net/backend/en/api/v2/media-center/press-release/?page=2&page_size=12&type=5`)
.then(response => {
this.items = response
})
}
}
</script>