Skip to content
On this page

Tab 标签列表

vue
<template>
  <ta-group title="基础用法">
    <div class="exp-tab-box">
      <ta-tab :options="shortTabList"></ta-tab>
    </div>
  </ta-group>
  <ta-group title="滚动(阈值 scrollThreshold = 4)">
    <div class="exp-tab-box">
      <ta-tab :options="tabList"></ta-tab>
    </div>
  </ta-group>
  <ta-group title="Mix">
    <div class="exp-tab-box">
      <ta-tab :options="mixTabList"></ta-tab>
    </div>
  </ta-group>
  <ta-group title="带副标签">
    <div class="exp-tab-box">
      <ta-tab :options="subTabList"></ta-tab>
    </div>
  </ta-group>
  <ta-group title="change 事件">
    <div class="exp-tab-box">
      <ta-tab
        ref="tabRef"
        :options="shortTabList"
        v-model="shortActiveValue"
        @change="onChange"
      ></ta-tab>
    </div>
  </ta-group>
</template>

<script lang="ts">
import { defineComponent, reactive, ref } from 'vue'
import { shortTabList, tabList, mixTabList, subTabList } from './data'
import { type TabOnChange, showToast, type TabRef } from '@/index'

export default defineComponent({
  name: 'ExpTab',
  setup() {
    const onChange: TabOnChange = (value, index) => {
      console.log('change', value, index)
      showToast(`切换到第${index + 1}`)
    }

    const shortActiveValue = ref(0)

    const tabRef = ref<TabRef | null>(null)

    return {
      tabRef,
      shortActiveValue,
      shortTabList: reactive(shortTabList),
      tabList,
      mixTabList,
      subTabList,

      onChange
    }
  }
})
</script>

Import

js
import { TaTab } from 'tantalum-ui-mobile'

具体的引入方式可以参考引入组件

Import Type

组件导出的类型定义:

ts
import type { TabOnChange, TabOptions, TabOption, BadgeOption, TabRef } from 'tantalum-ui-mobile'

Props

属性类型默认值必填说明
v-modelstring | number当前激活项的 value 值
optionsTabOptions[]tab 数据集
scroll-thresholdnumber4超过 scrollThreshold 个 Tab 使用滚动形式
colorstring自定义默认态字体和图标颜色
active-colorstring自定义激活态的字体和图标颜色

TabOptions

ts
type TabOption = {
  label: string
  value: number | string
  icon?: IconData
  activeIcon?: IconData
  badge?: BadgeOption
  subLabel?: string
}

type TabOptions = (number | string | TabOption)[]
key类型默认值必填说明
valuestring | number唯一值(v-model 使用)
labelstring标签名
iconstring | Component设置图标,使用 Icon 组件
activeIconstring | Component设置激活态图标,没有设置则沿用 icon 属性
badgeBadgeOption徽标,使用 Badge 组件
subLabelstring副标签名,如果设置了该字段,则显示带有副标签的列表
js
const options = [
  {
    value: 1,
    label: '首页',
    icon: 'HomeOutlined',
    badge: ''
  },
  {
    value: 2,
    label: '搜索',
    icon: 'SearchOutlined',
    badge: {
      dot: true,
      content: 1
    }
  }
]

也可以直接设置为 string[]number[],如:

js
const options = ['aaa', 'bbb', 'ccc']

将被转为:

js
const options = [
  {
    value: 'aaa',
    label: 'aaa'
  },
  {
    value: 'bbb',
    label: 'bbb'
  }
  {
    value: 'ccc',
    label: 'ccc'
  }
]

注:注意数组项要保持唯一性。

BadgeOption

ts
type BadgeOption =
  | number
  | string
  | Partial<{
      color: string
      content: string | number
      offset: number[]
      animated: boolean
      dot: boolean
      maxCount: number
      showZero: boolean
    }>

参数主要是基于 Badge 组件的 props,如果传入是 number 或者 string 则设置直接设置 content 属性。

Events

事件描述回调函数参数TypeScript 函数
change点击切换 tab 时触发( value:string | number, index: number )TabOnChange

change 的回调参数

参数类型描述
valuestring | number当前激活项的 value 值
indexnumber当前激活项的索引值

Methods

ts
interface TabRef {
  switchTo: (value: string | number) => void
  switchToIndex: (index: number) => void
}
方法名说明
switchTo切换到指定 value 的 Tab
switchToIndex切换到指定索引的 Tab