是否有任何方法將聚合物子模板與其父模板包圍起來?嵌套聚合物模板的繼承
在下面的例子陰影標籤帶給父母的模板到子視圖,但它忽略了它的內容:
父聚合物構件
<polymer-element name="my-window">
<template>
<div class="windowframe">
<p>test</p> <!-- can be shown with shadow tag -->
<content></content> <!-- cannot be used with shadow tag -->
兒童聚合物構件
<polymer-element name="my-window-example" extends="my-window">
<template>
<!-- get the hosts' shadow and insert here -->
<shadow>
<p>Here is the content of my window<p> <!--won't be shown -->
</shadow>
</template>
請您詳細說明您試圖完成什麼? –