function pchome() { return Vue.component('home', function (resolve, reject) { axios.get("/home.html").then(function (response) { resolve({ template: response.data, data() { return { name: 'home' }; }, mounted: function () { console.log('mounted:home'); weui.tab('#tab', { defaultIndex: 1 }); }, methods: { } }) }); }); }