mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
59 lines
1.2 KiB
JavaScript
59 lines
1.2 KiB
JavaScript
import { use } from '../utils';
|
|
import Info from '../info';
|
|
|
|
const [sfc, bem] = use('badge');
|
|
|
|
export default sfc({
|
|
props: {
|
|
url: String,
|
|
info: [String, Number],
|
|
title: String
|
|
},
|
|
|
|
inject: ['vanBadgeGroup'],
|
|
|
|
created() {
|
|
this.parent.badges.push(this);
|
|
},
|
|
|
|
beforeDestroy() {
|
|
this.parent.badges = this.parent.badges.filter(item => item !== this);
|
|
},
|
|
|
|
computed: {
|
|
parent() {
|
|
if (process.env.NODE_ENV !== 'production' && !this.vanBadgeGroup) {
|
|
console.error('[Vant] Badge needs to be child of BadgeGroup');
|
|
}
|
|
return this.vanBadgeGroup;
|
|
},
|
|
|
|
select() {
|
|
return this.parent.badges.indexOf(this) === +this.parent.activeKey;
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
onClick() {
|
|
const index = this.parent.badges.indexOf(this);
|
|
this.$emit('click', index);
|
|
this.parent.$emit('change', index);
|
|
}
|
|
},
|
|
|
|
render(h) {
|
|
return (
|
|
<a
|
|
href={this.url}
|
|
class={[bem({ select: this.select }), 'van-hairline']}
|
|
onClick={this.onClick}
|
|
>
|
|
<div class={bem('text')}>
|
|
{this.title}
|
|
<Info info={this.info} class={bem('info')} />
|
|
</div>
|
|
</a>
|
|
);
|
|
}
|
|
});
|