vue fetch api code example
Example 1: vue fetch api
async created() {
// GET request using fetch with async/await
const response = await fetch("https://api.npms.io/v2/search?q=vue");
const data = await response.json();
this.totalVuePackages = data.total;
}
Example 2: how to use axios in vue
//Install Axios from terminal
npm install axios
//Import Axios in your HelloWorld.vue
import axios from 'axios'
//Add a method to implement Axios
test () {
axios.post('URL')
.then(function (response) {
alert (response.data);
})
.catch(function (error) {
alert(error);
});
}
Example 3: fetch in vue 3
https://www.youtube.com/watch?v=-Aoyja_BjZY
https://www.youtube.com/watch?v=LvOYCjpMQ10
Example 4: how to use api url in vue
<a :href="post.url" target="_blank"><img :src="post.image_url"></a>