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.
		
		
		
		
			
				
					23 lines
				
				576 B
			
		
		
			
		
	
	
					23 lines
				
				576 B
			| 
								 
											5 years ago
										 
									 | 
							
								import { VantComponent } from '../common/component';
							 | 
						||
| 
								 | 
							
								import { link } from '../mixins/link';
							 | 
						||
| 
								 | 
							
								import { button } from '../mixins/button';
							 | 
						||
| 
								 | 
							
								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();
							 | 
						||
| 
								 | 
							
								        }
							 | 
						||
| 
								 | 
							
								    }
							 | 
						||
| 
								 | 
							
								});
							 |