我有一个自定义的Polymer元素<foo>
。在<template>
元素中,如何访问<foo>
元素的主体?也就是说,我该如何安排:
<foo>
<em>Clem</em>
</foo>
转化为
Hello, <em>Clem</em>
通过<template>
,可能看起来像
<polymer-element name="foo">
<template>
Hello, ???
</template>
</polymer-element>
答案 0 :(得分:1)
在ebidel中指出Custom Polymer element <x-strong> that works like the builtin <strong>?时,您需要使用<content>
标记创建插入点。
我还应该指出,您的元素名称需要包含符合规范的破折号。因此,它应该是<x-foo>
或<my-foo>
,而不仅仅是<foo>
。