var app = new Vue({ el: '#app', data: { books: [], booksCount: 0 }, methods: { sendQuery: function(url, error, success) { var xmh = new XMLHttpRequest(); var v; xmh.onreadystatechange = function() { v = xmh.responseText; if (xmh.readyState === 4 && xmh.status === 200) { var res; try { res = JSON.parse(v); } catch (err) { if (null !== error) error(err.name, err.message); } if (null !== success) success(res); } else if (xmh.readyState === 4) { if (null !== error) error(xmh.status, v); } }; xmh.open('GET', url, true); xmh.send(null); }, stdError: function(code, resp) { console.log('ERROR ' + code + ': ' + resp); }, indexSuccess: function(resp) { this.booksCount = resp.count; }, loadIndex: function() { this.sendQuery('cgi-bin/bouquins/index', this.stdError, this.indexSuccess); }, booksSuccess: function(resp) { this.books = resp; }, loadBooks: function() { this.sendQuery('cgi-bin/bouquins/books', this.stdError, this.booksSuccess); } }, mounted: function() { this.loadIndex(); } })