Can any way refresh the new value of the sparkline? #14349
Unanswered
yangwawa0323
asked this question in
Q&A
Replies: 1 comment
-
Method Also, you don't need methods: {
randomValue() {
setInterval( ()=>{ this.circleValue = _.random(0,100) }, 3000)
},
}, |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I want bind the value of sparkline and update the value for every 3000ms as well as process circular component.
<v-progress-circular rotate="360" size="100" width="15" :value="circleValue" color="teal" > {{ circleValue }}% </v-progress-circular>
methods: { randomValue() { let _this = this; setInterval( ()=>{ _this.circleValue = _.random(0,100) }, 3000) }, },
Beta Was this translation helpful? Give feedback.
All reactions