Badge 徽章

使用指南

  1. import { Badge, BadgeGroup } from 'vant';
  2. Vue.use(Badge);
  3. Vue.use(BadgeGroup);

代码演示

基础用法

通过在van-badge-group上设置active-key属性来控制选中的badge

  1. <van-badge-group :active-key="activeKey" @change="onChange">
  2. <van-badge title="标签名称" />
  3. <van-badge title="标签名称" info="8" />
  4. <van-badge title="标签名称" info="99" />
  5. <van-badge title="标签名称" info="99+" />
  6. </van-badge-group>
  1. export default {
  2. data() {
  3. return {
  4. activeKey: 0
  5. };
  6. },
  7. methods: {
  8. onChange(key) {
  9. this.activeKey = key;
  10. }
  11. }
  12. };

BadgeGroup API

参数说明类型默认值版本
active-key选中badge的索引String | Number0-

BadgeGroup Event

事件名说明参数
change切换徽章时触发key: 当前选中徽章的索引

Badge API

参数说明类型默认值版本
title内容String''-
info提示消息String | Number''-
url跳转链接String--

Badge Event

事件名说明参数
click点击徽章时触发key: 当前徽章的索引

原文: https://youzan.github.io/vant/#/zh-CN/badge