Using the dashboard template node I’m trying to include the Vuetify progress bar.
With a static template this works:
<v-progress-linear
model-value="15"
bg-color="pink-lighten-3"
color="pink-lighten-1"
></v-progress-linear>
However, when I want to inject 55
as msg.payload
it does show the progress bar, just without any progress, e.g. it’s empty.
<v-progress-linear
model-value="{{ msg.payload }}"
bg-color="pink-lighten-3"
color="pink-lighten-1"
></v-progress-linear>
How are dynamic values in vuetify and Dashboard 2.0 supposed to work?