在Polymer 1.0中,为什么在使用webcomponents-lite.js

时间:2015-11-03 09:37:29

标签: polymer vulcanize

我正在尝试使用webcomponents-lite.js,但在硫化它时会遇到问题。我把它归结为以下内容:

<!doctype html>
<html>
<head>
    <script src='bower_components/webcomponentsjs/webcomponents-lite.js'></script>
    <link rel='import' href='bower_components/paper-input/paper-input.html'>
</head>
<body>
    <paper-input></paper-input>
</body>

硫化后在IE中不起作用

如果我切换到

<script src='bower_components/webcomponentsjs/webcomponents.js'></script>

它有效

我正在使用版本1.14.0

在函数

中聚合物部分(我认为)失败了
removeAttribute: function (name) {
    this.node.removeAttribute(name);
    this._distributeParent();
},

with:对象不支持属性或方法&#39; removeAttribute&#39;

我必须在这个有点简单的例子中做错事,但这是什么?

是否存在精简版不能填充的内容?

非常感谢

干杯

1 个答案:

答案 0 :(得分:0)

最新版本的webcomponents已经解决了这个问题... woohoo