We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df90bf3 commit b637f21Copy full SHA for b637f21
src/components/Circle/HalfCircleLoader.vue
@@ -1,5 +1,5 @@
1
<template>
2
- <g :style="{ opacity: options.opacity }">
+ <g :style="{ opacity: opacity }">
3
<path
4
:stroke-width="thickness"
5
class="ep-half-circle--loader animation__loading"
@@ -43,6 +43,9 @@ export default {
43
emptyPosition() {
44
return this.options.size / 2 - this.emptyRadius;
45
},
46
+ opacity() {
47
+ return this.options.opacity && this.options.opacity >= 0 ? this.options.opacity : 0.55;
48
+ },
49
50
};
51
</script>
0 commit comments