在 Polymer 1.0 vulcanize + IE 中不适用于纸抽屉面板

In Polymer 1.0 vulcanize + IE does not work for paper-drawer-panel

我正在尝试使用 "vulcanize index1.html > index2.html",但在 IE 中遇到了一个问题。我把它浓缩成这样:

<!doctype html>
<html>
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1, user-scalable=yes">
    <meta name="mobile-web-app-capable" content="yes">
    <meta name="apple-mobile-web-app-capable" content="yes">

    <script src='bower_components/webcomponentsjs/webcomponents.min.js'></script>
    <link rel="import" href="bower_components/polymer/polymer.html"/>
    <link rel='import' href='bower_components/paper-drawer-panel/paper-drawer-panel.html'>
</head>
<body>
<paper-drawer-panel id="paperDrawerPanel">
    <div drawer>
        drawer
    </div>
    <div main>
        main
    </div>
</paper-drawer-panel>
</body>

在 Chrome 中结果很好,但在 IE 中,"drawer" 和 "main" 显示不正确

有人吗?

似乎是一个已经记录的错误

https://github.com/Polymer/vulcanize/issues/209