mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-10-31 19:17:48 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			34 lines
		
	
	
		
			619 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			619 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| /* eslint no-unused-vars: ["error", { "args": "none" }] */
 | |
| 
 | |
| export default {
 | |
|   name: 'WootTabs',
 | |
|   props: {
 | |
|     index: {
 | |
|       type: Number,
 | |
|       default: 0,
 | |
|     },
 | |
|   },
 | |
|   render(h) {
 | |
|     const Tabs = this.$slots.default
 | |
|       .filter(
 | |
|         node =>
 | |
|           node.componentOptions &&
 | |
|           node.componentOptions.tag === 'woot-tabs-item'
 | |
|       )
 | |
|       .map((node, index) => {
 | |
|         const data = node.componentOptions.propsData;
 | |
|         data.index = index;
 | |
|         return node;
 | |
|       });
 | |
|     return (
 | |
|       <ul
 | |
|         class={{
 | |
|           tabs: true,
 | |
|         }}
 | |
|       >
 | |
|         {Tabs}
 | |
|       </ul>
 | |
|     );
 | |
|   },
 | |
| };
 | 
