我正在尝试为路径“/path1”导入 ID 为“test-comp”的 Web 组件:
<app-route path="/path1" import="test-component.html" template="test-comp"></app-route>
Web组件的代码如下:
<dom-module id="test-comp">
<template>
<div>Hello world</div>
</template>
</dom-module>
<script>
Polymer({
is: 'test-comp',
attached: function() {
console.log("is attached");
},
});
</script>
但是,它永远不会进入attached
回调。有任何想法吗?非常感谢。