I have a list of classes and I want to add one class to any element with these classes. for example:
classes = {
"one",
"two",
"three"
}
in this example, I want to add 'red' class to any element with one of these classes. in this case, I can do it manually but in my case, the elements and classes are about 20! I want a programmatically way.
how to do it in vue.js 3?