34 lines
		
	
	
		
			756 B
		
	
	
	
		
			Vue
		
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			756 B
		
	
	
	
		
			Vue
		
	
	
| <docs>
 | |
| ---
 | |
| order: 11
 | |
| title:
 | |
|   zh-CN: 自定义页签头
 | |
|   en-US: Customized
 | |
| ---
 | |
| 
 | |
| ## zh-CN
 | |
| 自定义页签头
 | |
| 
 | |
| ## en-US
 | |
| 
 | |
| Customized bar of tab.
 | |
| 
 | |
| </docs>
 | |
| 
 | |
| <template>
 | |
|   <div>
 | |
|     <a-tabs v-model:activeKey="activeKey">
 | |
|       <a-tab-pane key="1" tab="Tab 1" style="height: 200px">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>
 | |
|       <template #renderTabBar="{ DefaultTabBar, ...props }">
 | |
|         <component :is="DefaultTabBar" v-bind="props" :style="{ opacity: 0.5 }" />
 | |
|       </template>
 | |
|     </a-tabs>
 | |
|   </div>
 | |
| </template>
 | |
| <script lang="ts" setup>
 | |
| import { ref } from 'vue';
 | |
| const activeKey = ref('1');
 | |
| </script>
 |