We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d6e4ee commit 74f40f1Copy full SHA for 74f40f1
src/App.vue
@@ -53,7 +53,11 @@
53
:line-mode="lineMode"
54
animation="default 1500 1000"
55
:legend="-123.1"
56
- ></ve-progress>
+ >
57
+ <template #legend-caption>
58
+ <p>hello</p>
59
+ </template>
60
+ </ve-progress>
61
</div>
62
63
src/components/VueEllipseProgress.vue
@@ -62,7 +62,9 @@ export default {
return this.data.length > 1;
},
64
isHTML() {
65
- return /<[a-z/][\s\S]*>/i.test((this.legendFormatter(defaultCounterTick) || "").toString().trim());
+ return /<[a-z/][\s\S]*>/i.test(
66
+ ((this.legendFormatter && this.legendFormatter(defaultCounterTick)) || "").toString().trim()
67
+ );
68
69
circlesData() {
70
if (this.isMultiple) {
0 commit comments