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