[Vuejs]-Get value from array data in Vue

0πŸ‘

βœ…

I think you should use a method instead, as you can’t pass parameters to computed properties.

Use this

...
methods : {
    showRole(user){
        //code that returns the button class
    }
}
...

<button :class="showRole(user)">Activate

Leave a comment