Vue.mixin({ methods:{ setTabBarIndex(index){ if (typeof this.$mp.page.getTabBar === 'function' && this.$mp.page.getTabBar()) { this.$mp.page.getTabBar().setData({ selected:index }) } } } })
混入后的使用
在页面文件中
onShow() { this.setTabBarIndex(0) //index为当前tab的索引 }