在做自定义tabbar的时候发现无法使用微信小程序的getTabbar
记录一下Vue3需要的代码
const curPages = getCurrentPages()[0]; // 获取当前页面实例
if (typeof curPages.getTabBar === 'function' && curPages.getTabBar()) {
curPages.getTabBar().setData({
selected: 2
});
}