虽然我知道dynamically bind styles如何安装后我找不到改变元素样式的方法。
例如,对于组件
<template>
<div>
<another-component></another-component>
</div>
</template>
<style>
.class-defined-in-another-component {
color: blue;
}
</style>
是否可以在color
中将red
更改为<style>
?
注意:我特别感兴趣的是修改样式而不使用<span :class="{color: dynamicColor}">
之类的构造,其中dynamicColor
将是computed
值。这是因为此修改后的样式实际上是applied to downstream components(上例中的<another-component>
)。