1

我正在尝试使用 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 做 --inline-scripts --inline-css

它在功能中的聚合物部分(我认为)失败了

removeAttribute: function (name) {
    this.node.removeAttribute(name);
    this._distributeParent();
},

with:对象不支持属性或方法“removeAttribute”

在这个有点简单的例子中,我一定做错了什么,但它是什么?

有什么东西是 lite 不能填充的吗?

非常感谢

干杯

4

1 回答 1

0

这已在最新版本的 webcomponents 中得到修复...哇哦

于 2015-11-16T12:43:55.713 回答