mirror of
				https://gitee.com/vant-contrib/vant.git
				synced 2025-10-31 11:32:09 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			69 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			69 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|   <demo-section>
 | |
|     <demo-block :title="$t('basicUsage')">
 | |
|       <van-badge-group
 | |
|         :active-key="activeKey"
 | |
|         @change="onChange"
 | |
|       >
 | |
|         <van-badge :title="$t('title')" />
 | |
|         <van-badge
 | |
|           :title="$t('title')"
 | |
|           info="8"
 | |
|         />
 | |
|         <van-badge
 | |
|           :title="$t('title')"
 | |
|           info="99"
 | |
|         />
 | |
|         <van-badge
 | |
|           :title="$t('title')"
 | |
|           info="99+"
 | |
|         />
 | |
|       </van-badge-group>
 | |
|     </demo-block>
 | |
|   </demo-section>
 | |
| </template>
 | |
| 
 | |
| <script>
 | |
| export default {
 | |
|   i18n: {
 | |
|     'zh-CN': {
 | |
|       title: '标签名称'
 | |
|     }
 | |
|   },
 | |
| 
 | |
|   data() {
 | |
|     return {
 | |
|       activeKey: 0
 | |
|     };
 | |
|   },
 | |
| 
 | |
|   methods: {
 | |
|     onChange(key) {
 | |
|       this.activeKey = key;
 | |
|     }
 | |
|   }
 | |
| };
 | |
| </script>
 | |
| 
 | |
| <style lang="less">
 | |
| @import '../../style/var';
 | |
| 
 | |
| .demo-badge {
 | |
|   .van-badge-group {
 | |
|     width: auto;
 | |
|     margin: 0 15px;
 | |
|     padding: 20px 0;
 | |
|     background-color: @white;
 | |
| 
 | |
|     &::after {
 | |
|       display: none;
 | |
|     }
 | |
|   }
 | |
| 
 | |
|   .van-badge {
 | |
|     width: 85px;
 | |
|     margin: 0 auto;
 | |
|   }
 | |
| }
 | |
| </style>
 |