聚合物,'计算'财产不在IE中工作

时间:2014-12-01 05:31:56

标签: polymer

为什么不在ie工作?

https://www.polymer-project.org/docs/polymer/polymer.html#computed-properties

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


<polymer-element name="square-element" attributes="square">
<template>
    <input type="number" value="{{num}}"><br>
    <em>{{num}}^2 = {{square}}</em>
</template>
<script>
Polymer('square-element', {
    num: 2,
    computed: {
    square: 'num * num'
    }
});
</script>

我在ie10中测试过,即11 ... .. 但铬很好

感谢您的帮助..

1 个答案:

答案 0 :(得分:0)

Web组件规范尚未包含在所有浏览器中。一些浏览器需要填充物以提供聚合物特征。 polyfill在这里:

https://github.com/webcomponents/webcomponentsjs

如果您想知道每个浏览器中实现的内容,请监控此页面:

http://jonrimmer.github.io/are-we-componentized-yet/