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 6edaaa6 commit d7289e4Copy full SHA for d7289e4
src/index.vue
@@ -88,6 +88,12 @@ export default {
88
.on('circle-inited', function(event){
89
renderCircleBody(this, (vm.progress/vm.scale));
90
vm.$emit('vue-circle-init', event);
91
+ vm.$watch('progress', (nv) => {
92
+ vm.updateProgress(nv)
93
+ })
94
+ vm.$watch('fill', (nv) => {
95
+ vm.updateFill(nv)
96
97
})
98
.circleProgress({
99
value: this.convertedProgress(vm.progress),
0 commit comments