657 B
657 B
#### 卡片式页签
另一种样式的页签,不提供对应的垂直样式。
#### Card type tab
Another type Tabs, which doesn't support vertical mode.
<template>
<a-tabs type="card" @change="callback">
<a-tab-pane key="1" tab="Tab 1">
Content of Tab Pane 1
</a-tab-pane>
<a-tab-pane key="2" tab="Tab 2">
Content of Tab Pane 2
</a-tab-pane>
<a-tab-pane key="3" tab="Tab 3">
Content of Tab Pane 3
</a-tab-pane>
</a-tabs>
</template>
<script>
export default {
data() {
return {};
},
methods: {
callback(key) {
console.log(key);
},
},
};
</script>