Style? of:: before cannot be dynamically added to vue

style? of:: before cannot be dynamically added to vue

Nov.19,2021

change your mind
adding class dynamically can achieve the same effect

.red:before {
    content: 'red',
    background-color  : red
}
.green:before {
    content: 'green';
    background-color: green;
}

switch class red or green

Menu