badge.vue
716 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<style scoped>
.demo-badge{
width: 42px;
height: 42px;
background: #eee;
border-radius: 6px;
display: inline-block;
}
</style>
<style>
.demo-badge-alone{
background: #5cb85c !important;
}
</style>
<template>
<div>
<Badge dot :count="count">
<a href="#" class="demo-badge"></a>
</Badge>
<Button @click="setCount">set count</Button>
</div>
</template>
<script>
export default {
props: {},
data () {
return {
count: 50
};
},
methods: {
setCount () {
this.count = 10;
}
}
};
</script>