demo-hackernews-with-django.../static/js/home.js

21 lines
413 B
JavaScript
Raw Normal View History

2021-06-23 15:10:44 +02:00
new Vue({
el: '#app',
delimiters: ['[[', ']]'],
data: {
news: []
},
mounted: function () {
this.getNews();
},
methods: {
getNews: function () {
fetch('/api/v1/news/')
.then(function(response) {
return response.json();
})
.then((json) => {
this.news = json;
});
}
}
})