安装后如何更改组件样式?

时间:2017-11-09 20:45:30

标签: css vue.js vue-component

虽然我知道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>)。

0 个答案:

没有答案