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.
		
		
		
		
		
			
		
			
				
					
					
						
							22 lines
						
					
					
						
							523 B
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							22 lines
						
					
					
						
							523 B
						
					
					
				
								import { VantComponent } from '../common/component';
							 | 
						|
								import { button } from '../mixins/button';
							 | 
						|
								import { link } from '../mixins/link';
							 | 
						|
								import { openType } from '../mixins/open-type';
							 | 
						|
								VantComponent({
							 | 
						|
								  classes: ['icon-class', 'text-class'],
							 | 
						|
								  mixins: [link, button, openType],
							 | 
						|
								  props: {
							 | 
						|
								    text: String,
							 | 
						|
								    dot: Boolean,
							 | 
						|
								    info: String,
							 | 
						|
								    icon: String,
							 | 
						|
								    disabled: Boolean,
							 | 
						|
								    loading: Boolean,
							 | 
						|
								  },
							 | 
						|
								  methods: {
							 | 
						|
								    onClick(event) {
							 | 
						|
								      this.$emit('click', event.detail);
							 | 
						|
								      this.jumpLink();
							 | 
						|
								    },
							 | 
						|
								  },
							 | 
						|
								});
							 |