[Vuejs]-How to dynamically change the color of a v-icon from javascript

0👍

You forgot to bind the property with the :, so it doesn’t eval the value, it’s considered as string.

<v-icon :color="calibrate3.color">fas fa-circle</v-icon>

Leave a comment