返回介绍

Tabbar 底部标签

发布于 2020-05-05 22:51:20 字数 2743 浏览 1105 评论 0 收藏 0

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点击菜单项时触发-

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文