37 lines
		
	
	
		
			557 B
		
	
	
	
		
			Vue
		
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			557 B
		
	
	
	
		
			Vue
		
	
	
<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>
 |