以下代码在Chrome和Firefox中运行良好,但在IE中,我必须单击选项卡两次以使标签更改或响应单击。我认为它可能与在模板中创建纸质标签有关。是否有一种解决方法可以让它在IE中正常运行?我正在运行0.51。
<paper-tabs id="papertabs" selected="{{selected}}">
<paper-tab name="all">All</paper-tab>
<template id="papertabstemplate" repeat="{{cat in categories}}">
<template if="{{ cat.group == group }}">
<paper-tab name="{{cat.category}}">{{cat.category}}</paper-tab>
</template>
</template>
</paper-tabs>