I have set up a table in Vuetify 2 with a v-progress-linear component to monitor the user's remaining time. Initially, my implementation was simple like this.
https://i.sstatic.net/x373G.png
However, we decided to split it into 4 sections for better visibility of the user's time. In doing so, I aim to apply different colors for values less than or equal to 4, and a single color for values greater than 4. Do you think I should consider using another package for this design? How would I go about implementing it? Your assistance on this matter would be greatly appreciated.
https://i.sstatic.net/vQ6ZL.png
The current setup simply involves extracting data from the store and utilizing it as follows:
<v-progress-linear
id="remainingTimeOffBar"
rounded
color="monochromeGray2"
background-color="colorYellow"
:value="60 - item.remainingDuration"
height="6"
/>
I am hopeful that a solution can be reached for this issue. Despite exploring various options, I have not been able to find a viable one thus far. Would handling this via CSS be feasible, or should I look into an alternative package?