使用聚合物1. *和带有Chrome的阴暗幕帘。
更新:我可以通过2个命名槽传递一个元素,但不能通过3个。不透明的圆顶有限制吗?
我在special-form-element
的{{1}}中传递<foo-two>
并使其在大孙子元素slot="card-content"
的{{1}}中显示时遇到问题。
带有<foo-card>
的卡片页脚显示没有问题的纸质按钮(因此铁塌陷会按原样扩展)。只是<slot name="card-content"></slot>
并没有显示通过许多递归槽传递的<slot name="footer-action-right"></slot>
。
有什么想法使我无法在<slot name="card-content"></slot>
的{{1}}中显示special-form-element
吗?
special-form-element
<foo-card>
<slot name="card-content"></slot>
<dom-module id="foo-one">
<template>
<foo-two>
<special-form-element id="addForm" slot="card-content" client="[[client]]" entity="{{newEntity}}"></special-form-element>
</foo-two>
</template>
</dom-module>