我正在努力迁移在Polymer 0.5中使用递归模板绑定的自定义元素.自定义元素的HTML代码如下:
<template>
<template bind="{{ items }}" id="t">
<section id="{{ id }}" appName="{{ id }}">
<template ref="t" repeat="{{ children }}"></template>
</section>
</template>
</template>
Run Code Online (Sandbox Code Playgroud)
我如何在Polymer 0.9中编写相同的构造?如果该功能尚未支持,是否有计划将其包含在Polymer的未来版本中?
谢谢