In vue it's easy to change the class of an element dynamically. However, what I want to do has nothing to do with that:
I have an attribute color
with the value #333
for example. Now I want to build a css class like:
.myColorClass > a {
color: this.color;
}
It's not possible for me to style every single element a
individually with the style attribute. So how do I approach this problem with Vue?