add a class to elements with specific classes in vue.js 3

233 Views Asked by At

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?

0

There are 0 best solutions below