- Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathProgress.vue
81 lines (78 loc) · 1.55 KB
/
Progress.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<template>
<component:is="tag":class="className":style="style">
<component:is="barTag":class="barClassName"role="progressbar":aria-valuenow="value":aria-valuemin="min":aria-valuemax="max":style="[{'width' : (value - min) / (max - min) * 100 + '%'}]"><slot></slot></component>
</component>
</template>
<script>
constProgress= {
props: {
tag: {
type:String,
default:"div"
},
barTag: {
type:String,
default:"div"
},
height: {
type:Number
},
bgColor: {
type:String
},
value: {
type:Number,
default:0
},
striped: {
type:Boolean,
default:false
},
color: {
type:String
},
animated: {
type:Boolean,
default:false
},
indeterminate: {
type:Boolean,
default:false
},
min: {
type:Number,
default:0
},
max: {
type:Number,
default:100
}
},
computed: {
className() {
return [
'progress md-progress',
this.bgColor&&this.bgColor
];
},
barClassName() {
return [
this.indeterminate?'indeterminate':'progress-bar',
this.striped?'progress-bar-striped':'',
this.color? ['bg-'+this.color, this.color] :'',
this.animated?'progress-bar-animated':''
];
},
style() {
return { height:this.height+'px'};
}
}
};
exportdefaultProgress;
export { ProgressasmdbProgress };
</script>
<style scoped>
.progress-bar {
height: 100%;
}
</style>