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