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
557 B
37 lines
557 B
<docs>
|
|
---
|
|
order: 1
|
|
title:
|
|
zh-CN: 禁用
|
|
en-US: Disabled
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
禁用某一项。
|
|
|
|
## en-US
|
|
|
|
Disabled a tab.
|
|
|
|
</docs>
|
|
|
|
<template>
|
|
<a-tabs v-model:activeKey="activeKey">
|
|
<a-tab-pane key="1" tab="Tab 1">Tab 1</a-tab-pane>
|
|
<a-tab-pane key="2" tab="Tab 2" disabled>Tab 2</a-tab-pane>
|
|
<a-tab-pane key="3" tab="Tab 3">Tab 3</a-tab-pane>
|
|
</a-tabs>
|
|
</template>
|
|
<script lang="ts">
|
|
import { defineComponent, ref } from 'vue';
|
|
|
|
export default defineComponent({
|
|
setup() {
|
|
return {
|
|
activeKey: ref('1'),
|
|
};
|
|
},
|
|
});
|
|
</script>
|