mirror of
https://github.com/nuxt/nuxt.git
synced 2025-01-30 15:22:39 +00:00
Fix https for API call
This commit is contained in:
parent
1798cc004b
commit
20763b1cb6
@ -25,7 +25,7 @@ export default {
|
||||
},
|
||||
data ({ query }) {
|
||||
const page = +query.page || 1
|
||||
return axios.get('http://reqres.in/api/users?page=' + page)
|
||||
return axios.get('https://reqres.in/api/users?page=' + page)
|
||||
.then((res) => {
|
||||
return {
|
||||
page: +res.data.page,
|
||||
|
Loading…
Reference in New Issue
Block a user