要在 web-components 中使用 javascript-libraries,我已经看到了将它们包装到 html-import 中的模式,如下所示:
(时刻.html)
<script type="application/javascript" src="bower_components/moment/moment.js"></script>
(组件.html)
<link rel="import" href="moment.html">
而不是直接在 component.html 中导入脚本。只使用 html-imports 有什么好处吗?