2024年9月18日

鸿蒙开发之Tabs

作者 高劲松

build() {
Tabs({ barPosition: BarPosition.End }) {
TabContent() {
Home()
}.tabBar(‘首页’)

TabContent() {
// 会员内容
Vip()
}.tabBar(‘会员’)

// 我的
TabContent() {
My()
}.tabBar(‘我的’)
}
}