how to use axios with vue code example
Example 1: axios in vue
npm install axios
import axios from 'axios'
testMethod () {
axios.post('URL')
.then(function (response) {
alert (response.data);
})
.catch(function (error) {
alert(error);
});
}
Example 2: how to use axios in vue
npm install axios
import axios from 'axios'
test () {
axios.post('URL')
.then(function (response) {
alert (response.data);
})
.catch(function (error) {
alert(error);
});
}
Example 3: install axios vue
npm install axios
Example 4: axios vuejs
axios
.get('https://api.coindesk.com/v1/bpi/currentprice.json')
.then(response => (this.info = response.data.bpi))
Example 5: how to use api url in vue
<a :href="post.url" target="_blank"><img :src="post.image_url"></a>