0

看看这个Plunker

它看起来像第 1 行index.html,上面写着:

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

加上第 1 行parent-element.html

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

正在共同导入所有 Polymer 1.0 网络元素。

那是对的吗?还是他们只导入一个子集?

4

1 回答 1

2

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

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

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

第二个参考是 Polymer 库本身。

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

如何将 Polymer 元素导入 plunker (plnkr.co)、jsBin 和 jsFiddle 等代码游乐场?

于 2015-08-31T03:36:50.057 回答