[Vuejs]-How do you change the text color of a disabled component

0👍

The css attribute you want is ‘color’, not ‘fontColor’

0👍

Your mistakes is that fontColor doesn’t exist. Use color instead

.disable-events {
     color: your color;
}

Leave a comment