Vue.component('pagination', function (resolve, reject) { axios.get("/pages/shared/pagination.html").then(function (response) { resolve(parseModel(response)); }); }); Vue.component('layout', function (resolve, reject) { axios.get("/pages/shared/layout.html").then(function (response) { resolve(parseModel(response)); }); });