axios
Links
Quelltext
html
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
js
var self = this;
axios.get('https://aws.random.cat/meow')
.then(function (response) {
self.cat = response.data.file;
self.isLoading1 = false;
console.log(response);
})
.catch(function (error) {
console.log(error);
});