Polymer 1.0:Plunker会自动导入所有元素

时间:2015-07-13 22:16:20

标签: polymer web-component polymer-1.0 plunker

请看this Plunker

index.html上的第1行看起来像是:

<script src="http://www.polymer-project.org/1.0/samples/components/webcomponentsjs/webcomponents-lite.min.js"></script>

加上parent-element.html上的第1行,内容为:

<link rel="import" href="http://www.polymer-project.org/1.0/samples/components/polymer/polymer.html">

共同导入所有Polymer 1.0 Web元素。

这是对的吗?或者他们只导入一个子集?

1 个答案:

答案 0 :(得分:2)

Plunker不会自动导入所有Polymer元素。

第一个参考是polyfill库(参见http://webcomponents.org/polyfills/

  

webcomponents.js是一组基于Web组件规范构建的polyfill。它使开发人员可以在所有现代浏览器中使用这些标准。

第二个参考是Polymer库本身。

我相信你将元素导入Plunker的答案也已经得到了解答:

How do I import Polymer elements into code playgrounds like plunker (plnkr.co), jsBin and jsFiddle?