微信小程序自定义tabBar在uni(2)

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的索引 }

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/e9e3964a56c8865dd18ab5fcd172eaac.html