当前位置: 首页 > 文档资料 > Feui 中文文档 >

Tabbar 底部标签

优质
小牛编辑
133浏览
2023-12-01
import { Tabbar,TabbarItem } from 'feui';
components: {
  [Tabbar.name]: Tabbar
  [TabbarItem.name]: TabbarItem
}

代码演示

<fe-tabbar>
  <tabbar-item>
    <img slot="icon" src="../assets/images/logo-100.png" />
    <span slot="label">主页</span>
  </tabbar-item>
  <tabbar-item show-dot>
    <img slot="icon" src="../assets/images/logo-100.png" />
    <span slot="label">消息</span>
  </tabbar-item>
  <tabbar-item selected link="/tabbar" icon-class='selected'>
    <img slot="icon" src="../assets/images/logo-100.png" />
    <span slot="label">通讯录</span>
  </tabbar-item>
  <tabbar-item badge="2">
    <img slot="icon" src="../assets/images/logo-100.png" />
    <span slot="label">我的</span>
  </tabbar-item>
</fe-tabbar>

#Tabbar

API

参数说明类型默认值可选值
icon-class图标的class名String--

Slots

Slot名说明备注
defaulttabbar主体内容,只允许tabbar-item-

#TabbarItem

API

参数说明类型默认值可选值
selected是否选中当前项,也可以用v-model来指定选中的tabbar-item的indexBooleanfalsefalse,true
badge徽标文字,不指定则不显示String--
show-dot是否显示红点Booleanfalsefalse,true
link图标的class名Booleanfalsefalse,true
icon-class图标类名,如果tabbar也同时定义了icon-class, 会使用tabbar-item的String--

Slots

Slot名说明备注
icon图标区域-
icon-active如果存在,当前 tabbar-item 点击时会显示,用于切换图标-
label图标下方文字-

Events

事件名参数说明备注
on-item-clickindex点击菜单项时触发-