There are 61 pages in this json file but with this call I only get the first page of it? How can I get all of them, please? Is there a loop or another way to use axios?
<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>