How can I use Polymer 2 elements in Polymer 3 element? The following doesn't work since <link>
element doesn't work inside shadow dom.
static get template() {
return '
<link rel="import" href="...">
<my-element></my-element>';
}
We can simply take out <link>
outside of the element and put at the top level, but that feels like breaking component-ness.