arrow-left

All pages
gitbookPowered by GitBook
1 of 1

Loading...

Tabs

介紹使用 Tabs 頁籤元件

Tabs 介紹示意圖

Tabs 頁籤,通常應用在某一個主題有多種不同內容的情況下使用。

hashtag
基本使用

hashtag
輔助資訊

hashtag
前、後綴

hashtag
Tabs 屬性

Name
Value
Type
Default
Required
Note

hashtag
Tabs-panel 屬性

Name
Value
Type
Default
Required
Note

hashtag
Tabs 事件

Name
Parameters
Desciption

hashtag
Demo

<bpa-tabs v-model="demoTabs">
  <bpa-tab-panel name="first-tab" label="First tab">
    This is the content of the first tab
  </bpa-tab-panel>
  <bpa-tab-panel name="second-tab" label="Second tab">
    This is the content of the second tab
  </bpa-tab-panel>
</bpa-tabs>

String

label

String

affixIcon

String

badge

String || Number

v-model / value

String

name

String

prefixIcon

input

當頁籤變更時

Radio 介紹示意圖

<bpa-tabs v-model="demoTabs">
  <bpa-tab-panel name="first-tab" label="First tab" badge="95">
    This is the content of the first tab
  </bpa-tab-panel>
  <bpa-tab-panel name="second-tab" label="Second tab" badge="27">
    This is the content of the second tab
  </bpa-tab-panel>
</bpa-tabs>
<bpa-tabs v-model="demoTabs">
  <bpa-tab-panel name="first-tab" label="First tab" prefix-icon="fas fa-search">
    This is the content of the first tab
  </bpa-tab-panel>
  <bpa-tab-panel name="second-tab" label="Second tab" affix-icon="fas fa-search">
    This is the content of the second tab
  </bpa-tab-panel>
</bpa-tabs>