我想创建一个自定义聚合物元素,其中包含来自第三方库的自定义元素。我的customelement.html文件在头部
中有这个<head>
<title>orderlist</title>
<link rel="import" href="packages/widget/components/accordion.html">
<link rel="import" href="packages/widget/components/collapse.html">
</head>
一切都很好,编辑可以找到引用的组件。
然而,在运行时,Dartium抱怨无法找到组件:
http://(mylocalhost)/birdweb_web/web/packages/birdweb/packages/widget/components/accordion.html 404 (Not Found)
从URL看来,Dart想要在我的应用程序库中找到自定义元素,而不是在顶级包目录中。
如何在自定义元素中使用第三方聚合物元素?