ant-design-vue/components/tabs/index.zh-CN.md
tangjinzhou 2ee3d43534
Feat css var (#5327)
* style: affix & util

* feat(alert): add customIcon slot

* feat(anchor): ts type

* style: auto-complete

* feat: avatar add crossOrigin & maxPopoverTrigger

* style(backTop): v-show instead v-if

* style: badge

* style: breadcrumb

* feat: button add global size

* feat: update i18n

* feat: picker add disabledTime

* test: update snap

* doc: update img url

* style: fix Card tabs of left position

* doc: update cascader doc

* feat: collapse

* style: comment

* style: configprovider

* feat: date-picker add soem icon slot

* style: update descriptions style

* feat: add divider orientationMargin

* doc: update drawer

* feat: dropdown add destroyPopupOnHide & loading

* style: update empty

* feat: form add labelWrap

* style: update grid

* test: update grid snap

* fix: image ts error

* fix: mentions cannot select, close #5233

* doc: update pagination change info, close #5293

* fix: table dynamic expand error, close #5295

* style: remove not use

* release 3.0.0-beta.11

* doc: update typo

* feat: input add showCount

* feat: inputNumber add prefix slot

* style: update layout

* style: update list

* feat: add locale i18

* style: update locale ts

* style: update mentions

* feat: menu divider add dashed

* perf: menu

* perf: menu animate

* feat: modal method add wrapClassName

* style: update pageheader

* feat: update pagination ts

* feat: confirm add showCancel & promise

* doc: update popover

* style: update progress

* style: radio

* style: update rate、result、row

* feat: select add fieldNames

* feat: add skeleton button & input

* feat: spin tip support slot

* style: slider & space

* stype: update steps ts type

* style: update switch

* feat: table add tree filter

* test: update input sanp

* feat: table add filterMode...

* fix: tree autoExpandParent bug

* test: update input snap

* doc: tabs add destroyInactiveTabPane

* style: update tag

* style: update timeline & time-picker

* fix: Tooltip arrowPointAtCenter 1px shift bug

* feat: typography add enterEnterIcon triggerType

* doc: update tree-select

* fix: deps and TypeScript types

* style: udpate transfer

* style: update style

* doc: add colorScheme

* chore: add css var builg

* doc: sort api

* style: lint code

* doc: add css var

* test: update snap

* chore: add pre script

* chore: update lint

* perf: collapse animate

* perf: collapse tree

* perf: typography shaking when edit

* doc: update auto-complete demo

* fix: table tree not have animate

* feat: deprecated dropdown center placement

* feat: deprecated dropdown center placement

* test: update snap
2022-03-12 09:56:32 +08:00

3.3 KiB
Raw Blame History

category subtitle type title cover
Components 标签页 数据展示 Tabs https://gw.alipayobjects.com/zos/antfincdn/lkI2hNEDr2V/Tabs.svg

选项卡切换组件。

何时使用

提供平级的区域将大块内容进行收纳和展现,保持界面整洁。

Ant Design 依次提供了三级选项卡,分别用于不同的场景。

  • 卡片式的页签,提供可关闭的样式,常用于容器顶部。
  • 标准线条式页签,用于容器内部的主功能切换,这是最常用的 Tabs。
  • RadioButton 可作为更次级的页签来使用。

API

Tabs

参数 说明 类型 默认值 版本
activeKey(v-model) 当前激活 tab 面板的 key string
animated 是否使用动画切换 Tabs在 `tabPosition=top bottom` 时有效 boolean | {inkBar:boolean, tabPane:boolean} true, 当 type="card" 时为 false
centered 标签居中展示 boolean false 3.0
destroyInactiveTabPane 被隐藏时是否销毁 DOM 结构 boolean false
hideAdd 是否隐藏加号图标,在 type="editable-card" 时有效 boolean false
size 大小,提供 large defaultsmall 三种大小 string default
tabBarGutter tabs 之间的间隙 number
tabBarStyle tab bar 的样式对象 object -
tabPosition 页签位置,可选值有 top right bottom left string top
type 页签的基本样式,可选 linecard editable-card 类型 string line

Tabs 插槽

插槽名称 说明 参数
addIcon 自定义添加按钮 - -
leftExtra tab bar 上左侧额外的元素 - -
moreIcon 自定义折叠 icon - -
renderTabBar 替换 TabBar用于二次封装标签头 { DefaultTabBar }
rightExtra tab bar 上右侧额外的元素 - -

Tabs 事件

事件名称 说明 回调参数
change 切换面板的回调 Function(activeKey) {}
edit 新增和删除页签的回调,在 type="editable-card" 时有效 (targetKey, action): void
tabClick tab 被点击的回调 Function
tabScroll 滚动 TabBar 是触发 { direction: 'left' | 'right' | 'top' | 'bottom' }

Tabs.TabPane

参数 说明 类型 默认值
forceRender 被隐藏时是否渲染 DOM 结构 boolean false
key 对应 activeKey string
tab 选项卡头显示文字 string|slot

Tabs.TabPane 插槽

插槽名称 说明 参数
closeIcon 自定义关闭图标,在 type="editable-card"时有效 -
tab 选项卡头显示文字 -