将样式属性绑定到polymer-1.0中的组件属性

时间:2015-11-23 03:24:10

标签: dart dart-polymer

鉴于以下.html

html的

<!-- shared-styles.html -->
<dom-module id="shared-styles">
  <template>
    <style>
      .red { color: red; }
    </style> 
  </template>
</dom-module>

和.dart src

.dart

@property
String redColor = ...

如何将redColor属性绑定到.html声明元素中的color属性?

由于

1 个答案:

答案 0 :(得分:0)

不支持此功能。

我会使用Polymer API更改polymer 1.0 - how to change font size programmatically?中显示的CSS变量作为解决方法。