uni-app+vue3微信小程序怎么获取 this.getTabBar()
onShow(()=> { const curPages = getCurrentPages()[0]; // 获取当前页面实例 console.log("curPages",curPages) if (typeof curPages.getTabBar === 'function' && curPages.getTabBar()) { curPages.getTabBar().setData({ selected: 0 // selected根据tabbar数组里面的索引值来写的 }); } })