20 lines
		
	
	
		
			469 B
		
	
	
	
		
			Vue
		
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			469 B
		
	
	
	
		
			Vue
		
	
	
| import { defineComponent } from 'vue';
 | |
| import VcSelect, { selectProps } from '../select';
 | |
| 
 | |
| export default defineComponent({
 | |
|   compatConfig: { MODE: 3 },
 | |
|   inheritAttrs: false,
 | |
|   props: selectProps(),
 | |
|   Option: VcSelect.Option,
 | |
|   setup(props, { attrs, slots }) {
 | |
|     return () => {
 | |
|       const selelctProps: any = {
 | |
|         ...props,
 | |
|         size: 'small',
 | |
|         ...attrs,
 | |
|       };
 | |
|       return <VcSelect {...selelctProps} v-slots={slots}></VcSelect>;
 | |
|     };
 | |
|   },
 | |
| });
 |