var page1 = Vue.component('page1-component', function (resolve, reject) {
? ? ? ? $.get('./index.html').done(function(template) {
? ? ? ? resove ({
? ? ? ? ? ? ? ? template: template,
? ? ? ? ? ? ? ? data: function () {
? ? ? ? ? ? ? ? ? ? ? ? return {
}
}
})
})
})