vue get data from api 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: vue get data from backend
vue get data from backend