js中使用css变量(vue)
html
<div class="test" :style="{ '--backgroundColor': backgroundColor }"></div>
js
css
.test { background-color: var(--backgroundColor); }
html
<div class="test" :style="{ '--backgroundColor': backgroundColor }"></div>
js
css
.test { background-color: var(--backgroundColor); }