将内容嵌入到子元素中

时间:2015-02-02 17:23:56

标签: html html5 polymer web-component

我想将父元素的内容嵌套在子元素中。

<polymer-element name="parent-form" noscript>
    <template>

        <child-form>
            <content></content>
        </child-form>

    </template>
</polymer-element>

然后我想使用这样的组件。

<parent-form>
    <input type="text"/>
</parent-form>

期望输入将在'child-form'中。

Chrome中的实际结果是内容位于“子表单”之前,而“子表单”没有内容。

我可以在自定义子元素中嵌套这样的内容吗?

1 个答案:

答案 0 :(得分:0)

这应该有效,请参阅http://jsbin.com/dotemo/11/edit。您确定已经导入了您的子元素吗?

您可以使用此书签来查找未注册的元素 - https://www.polymer-project.org/docs/polymer/debugging.html#unregistered-element-bookmarklet