UI text doesn't update after state variables are updated #600
Unanswered
mashirafarid
asked this question in
Q&A
Replies: 1 comment 4 replies
-
You need to run |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi there, I'm having trouble trying to update my web app's UI after some state variables are changed. The app uses a VTab component, with the first tab containing a form that needs to be filled out, and the second tab containing the results of various calculations based on the form inputs. In the first tab, when the submit button is clicked, the form inputs are validated, then switches to the second tab, which should show a VProgressCircular with some information on the current calculation being run. Once the calculations are complete, the results should be shown on this second tab. Here is a simplified version of my code:
UI
Main
I've been able to validate and switch the tabs with no issues, but the UI doesn't seem to update when the information regarding the current calculation and the final result is changed in state. How can I achieve this?
Beta Was this translation helpful? Give feedback.
All reactions