var home = Vue.component('home', function (resolve, reject) { axios.get("./test.home.html").then(function (response) { resolve({ template: response.data, data() { return { selected: 'home' }; }, created: function () { } }) }); });