/*! For license information please see 7297.d73f1eba.js.LICENSE.txt */ (self.webpackChunk=self.webpackChunk||[]).push([["7297"],{87076:function(s,n,a){"use strict";a.r(n);var t=a("80681");let e=["innerHTML"];n.default={setup:()=>({html:""}),render:()=>((0,t.wg)(),(0,t.iD)("div",{class:"van-doc-markdown-body",innerHTML:'

Tab

\n

Intro

\n

Used to switch between different content areas.

\n

Install

\n

Register component globally via app.use, refer to Component Registration for more registration ways.

\n
import { createApp } from 'vue';\nimport { Tab, Tabs } from 'vant';\n\nconst app = createApp();\napp.use(Tab);\napp.use(Tabs);\n
\n

Usage

\n

Basic Usage

\n

The first tab is active by default, you can set v-model:active to active specified tab.

\n
<van-tabs v-model:active="active">\n  <van-tab v-for="index in 4" :title="'tab' + index">\n    content of tab {{ index }}\n  </van-tab>\n</van-tabs>\n
\n
import { ref } from 'vue';\n\nexport default {\n  setup() {\n    const active = ref(0);\n    return { active };\n  },\n};\n
\n

Match By Name

\n
<van-tabs v-model:active="activeName">\n  <van-tab title="tab 1" name="a">content of tab 1</van-tab>\n  <van-tab title="tab 2" name="b">content of tab 2</van-tab>\n  <van-tab title="tab 3" name="c">content of tab 3</van-tab>\n</van-tabs>\n
\n
import { ref } from 'vue';\n\nexport default {\n  setup() {\n    const activeName = ref('b');\n    return { activeName };\n  },\n};\n
\n

Swipe Tabs

\n

By default more than 5 tabs, you can scroll through the tabs. You can set swipe-threshold attribute to customize threshold number.

\n
<van-tabs v-model:active="active">\n  <van-tab v-for="index in 8" :title="'tab' + index">\n    content of tab {{ index }}\n  </van-tab>\n</van-tabs>\n
\n

Disabled Tab

\n

Use disabled prop to disable a tab.

\n
<van-tabs v-model:active="active">\n  <van-tab v-for="index in 3" :title="'tab' + index" :disabled="index === 2">\n    content of tab {{ index }}\n  </van-tab>\n</van-tabs>\n
\n

Card Style

\n

Tabs styled as cards.

\n
<van-tabs v-model:active="active" type="card">\n  <van-tab v-for="index in 3" :title="'tab' + index">\n    content of tab {{ index }}\n  </van-tab>\n</van-tabs>\n
\n

Click Tab Event

\n
<van-tabs v-model:active="active" @click-tab="onClickTab">\n  <van-tab v-for="index in 2" :title="'tab' + index">\n    content of tab {{ index }}\n  </van-tab>\n</van-tabs>\n
\n
import { showToast } from 'vant';\n\nexport default {\n  setup() {\n    const onClickTab = ({ title }) => showToast(title);\n    return {\n      onClickTab,\n    };\n  },\n};\n
\n

Sticky

\n

In sticky mode, the tab nav will be fixed to top when scroll to top.

\n
<van-tabs v-model:active="active" sticky>\n  <van-tab v-for="index in 4" :title="'tab ' + index">\n    content {{ index }}\n  </van-tab>\n</van-tabs>\n
\n

Shrink

\n

In shrink mode, the tabs will be shrinked to the left.

\n
<van-tabs v-model:active="active" shrink>\n  <van-tab v-for="index in 4" :title="'tab ' + index">\n    content {{ index }}\n  </van-tab>\n</van-tabs>\n
\n

Custom title

\n

Use title slot to custom tab title.

\n
<van-tabs v-model:active="active">\n  <van-tab v-for="index in 2">\n    <template #title> <van-icon name="more-o" />tab </template>\n    content {{ index }}\n  </van-tab>\n</van-tabs>\n
\n

Switch Animation

\n

Use animated props to change tabs with animation.

\n
<van-tabs v-model:active="active" animated>\n  <van-tab v-for="index in 4" :title="'tab ' + index">\n    content {{ index }}\n  </van-tab>\n</van-tabs>\n
\n

Swipeable

\n

In swipeable mode, you can switch tabs with swipe gesture in the content.

\n
<van-tabs v-model:active="active" swipeable>\n  <van-tab v-for="index in 4" :title="'tab ' + index">\n    content {{ index }}\n  </van-tab>\n</van-tabs>\n
\n

Scrollspy

\n

In scrollspy mode, the list of content will be tiled.

\n
<van-tabs v-model:active="active" scrollspy sticky>\n  <van-tab v-for="index in 8" :title="'tab ' + index">\n    content {{ index }}\n  </van-tab>\n</van-tabs>\n
\n

Before Change

\n
<van-tabs v-model:active="active" :before-change="beforeChange">\n  <van-tab v-for="index in 4" :title="'tab ' + index">\n    content {{ index }}\n  </van-tab>\n</van-tabs>\n
\n
import { ref } from 'vue';\n\nexport default {\n  setup() {\n    const active = ref(0);\n    const beforeChange = (index) => {\n      // prevent change\n      if (index === 1) {\n        return false;\n      }\n\n      // async\n      return new Promise((resolve) => {\n        setTimeout(() => resolve(index !== 3), 1000);\n      });\n    };\n\n    return {\n      active,\n      beforeChange,\n    };\n  },\n};\n
\n
\n

Tips: The before-change callback will not be triggered by swiping gesture.

\n
\n

Hide Header

\n

By setting the showHeader prop to false, the title bar of the Tabs component can be hidden. In this case, you can control the active prop of the Tabs using custom components.

\n
<van-tabs v-model:active="active" :show-header="false">\n  <van-tab v-for="index in 4"> content {{ index }} </van-tab>\n</van-tabs>\n
\n

API

\n

Tabs Props

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AttributeDescriptionTypeDefault
v-model:activeIndex of active tabnumber | string0
typeCan be set to line cardstringline
colorTab colorstring#1989fa
backgroundBackground colorstringwhite
durationToggle tab\'s animation timenumber | string0.3
line-widthWidth of tab linenumber | string40px
line-heightHeight of tab linenumber | string3px
animatedWhether to change tabs with animationbooleanfalse
borderWhether to show border when type="line"booleanfalse
ellipsisWhether to ellipsis too long titlebooleantrue
stickyWhether to use sticky modebooleanfalse
shrinkWhether to shrink the the tabs to the leftbooleanfalse
swipeableWhether to enable gestures to slide left and rightbooleanfalse
lazy-renderWhether to enable tab content lazy renderbooleantrue
scrollspyWhether to use scrollspy modebooleanfalse
show-header v4.7.3Whether to show title barbooleantrue
offset-topSticky offset top , supports px vw vh rem unit, default pxnumber | string0
swipe-thresholdSet swipe tabs thresholdnumber | string5
title-active-colorTitle active colorstring-
title-inactive-colorTitle inactive colorstring-
before-changeCallback function before changing tabs, return false to prevent change, support return Promise(name: number | string) => boolean | Promise<boolean>-
\n

Tab Props

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AttributeDescriptionTypeDefault
titleTitlestring-
disabledWhether to disable tabbooleanfalse
dotWhether to show red dot on the titlebooleanfalse
badgeContent of the badge on the titlenumber | string-
nameIdentifiernumber | stringIndex of tab
urlLinkstring-
toThe target route should navigate to when clicked on, same as the to prop of Vue Routerstring | object-
replaceIf true, the navigation will not leave a history recordbooleanfalse
title-styleCustom title stylestring | Array | object-
title-classCustom title class namestring | Array | object-
show-zero-badgeWhether to show badge when the value is zerobooleantrue
\n

Tabs Events

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
EventDescriptionArguments
click-tabEmitted when a tab is clicked{ name: string | number, title: string, event: MouseEvent, disabled: boolean }
changeEmitted when active tab changedname: string | number, title: string
renderedEmitted when content first rendered in lazy-render modename: string | number, title: string
scrollEmitted when tab scrolling in sticky mode{ scrollTop: number, isFixed: boolean }
\n

Tabs Methods

\n

Use ref to get Tabs instance and call instance methods.

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescriptionAttributeReturn value
resizeResize Tabs when container element resized or visibility changed--
scrollToGo to specified tab in scrollspy modename: string | number-
\n

Types

\n

The component exports the following type definitions:

\n
import type { TabProps, TabsType, TabsProps, TabsInstance } from 'vant';\n
\n

TabsInstance is the type of component instance:

\n
import { ref } from 'vue';\nimport type { TabsInstance } from 'vant';\n\nconst tabsRef = ref<TabsInstance>();\n\ntabsRef.value?.scrollTo(0);\n
\n

Tabs Slots

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription
nav-leftCustom nav left content
nav-rightCustom nav right content
nav-bottomCustom nav bottom content
\n

Tab Slots

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription
defaultContent of tab
titleCustom tab title
\n

Theming

\n

CSS Variables

\n

The component provides the following CSS variables, which can be used to customize styles. Please refer to ConfigProvider component.

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDefault ValueDescription
--van-tab-text-colorvar(--van-gray-7)-
--van-tab-active-text-colorvar(--van-text-color)-
--van-tab-disabled-text-colorvar(--van-text-color-3)-
--van-tab-font-sizevar(--van-font-size-md)-
--van-tab-line-heightvar(--van-line-height-md)-
--van-tabs-default-colorvar(--van-primary-color)-
--van-tabs-line-height44px-
--van-tabs-card-height30px-
--van-tabs-nav-backgroundvar(--van-background-2)-
--van-tabs-bottom-bar-width40px-
--van-tabs-bottom-bar-height3px-
--van-tabs-bottom-bar-colorvar(--van-primary-color)-
\n
'},null,8,e))}}}]);