mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
24 lines
344 B
Vue
24 lines
344 B
Vue
<template>
|
|
<div class="z-badge-group">
|
|
<slot></slot>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'z-badge-group',
|
|
props: {
|
|
// 当前激活 tab 面板的 key
|
|
activeKey: {
|
|
type: [Number, String],
|
|
default: 0
|
|
}
|
|
},
|
|
data () {
|
|
return {
|
|
computedActiveKey: this.activeKey
|
|
}
|
|
}
|
|
};
|
|
</script>
|