-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvProgress.vue
40 lines (39 loc) · 842 Bytes
/
vProgress.vue
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
38
39
40
<template>
<div class="v-progress">
<div class="v-progress-bar">
<div class="v-progress-value" :style="{'width': `${v}%`}"></div>
</div>
<div class="v-progress-label" v-text="`${v}%`"></div>
</div>
</template>
<script>
export default {
name: 'v-progress',
data() {
return {
v: 0
}
},
props: {
value: {
type: Number,
default: 0
}
},
watch: {
value() {
this.upd();
}
},
methods: {
upd() {
setTimeout(() => {
this.v = this.value;
}, 0);
}
},
created() {
this.upd();
}
};
</script>