HTTP
HTTP
Use fetch or axios to make http calls
- fetch on page load
data(){
return {
todos: []
}
},
created(){
this.fetchPosts()
},
methods: {
fetchPosts(){
// get api call response
this.todos = response
}
}
Use fetch or axios to make http calls
data(){
return {
todos: []
}
},
created(){
this.fetchPosts()
},
methods: {
fetchPosts(){
// get api call response
this.todos = response
}
}