for example, I want to dynamically set: style
so how to set with pseudo elements?
for example, I want to dynamically change the background color after radio is selected
".ivu-radio.ivu-radio-checked .ivu-radio-inner::after":" background: red"
<Radio :style="[isSelected(item) ? "background: red" : ""]"
it is OK to change itself, but how to operate pseudo elements?
or is there any other way to change the style dynamically