正确的Polymer元素定义结构

时间:2015-11-16 22:59:15

标签: polymer

聚合物noob在这里。在Polymer开发人员指南中,我看到了具有以下结构的元素定义示例:

结构1(样式是模板的子代):

<dom-module>
    <template>
        <style>
          ...
        </style>
    </template>
    <script>
      ...
    </script>
<dom-module>

在聚合物入门套件中,我看到生成以下内容:

结构2(样式是模板的兄弟):

<dom-module>
    <style>
      ...
    </style>
    <template>
    </template>
    <script>
      ...
    </script>
</dom-module>

上面哪个更好或更正确的结构?或者每个人都有不同的目的吗?

TIA

1 个答案:

答案 0 :(得分:1)

结构1是每v1.1.0及更高版本的推荐路线。结构2带有性能惩罚,但仍然支持。

来源:https://www.polymer-project.org/1.0/docs/release-notes.html#release-110httpsgithubcompolymerpolymertreev110-2015-08-13