You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
620 B
37 lines
620 B
<docs>
|
|
---
|
|
order: 2
|
|
title:
|
|
zh-CN: 居中
|
|
en-US: Centered
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
标签居中展示。
|
|
|
|
## en-US
|
|
|
|
Centered tabs.
|
|
|
|
</docs>
|
|
|
|
<template>
|
|
<a-tabs v-model:activeKey="activeKey" centered>
|
|
<a-tab-pane key="1" tab="Tab 1">Content of Tab Pane 1</a-tab-pane>
|
|
<a-tab-pane key="2" tab="Tab 2" force-render>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 lang="ts">
|
|
import { defineComponent, ref } from 'vue';
|
|
|
|
export default defineComponent({
|
|
setup() {
|
|
return {
|
|
activeKey: ref('1'),
|
|
};
|
|
},
|
|
});
|
|
</script>
|