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