假设我有一个定义为
的自定义元素<polymer-element name="my-elem" >
<template if={{show_is_in_my_declaration?}}>
....
</template>
<script>
Polymer('my-elem', {});
</script>
要使用它,我想将其声明为......
<my-elem show></my-elem>
包含“show
”的位置会显示模板;与“flex
”或“fit
”之类的内容类似。这叫做什么以及如何实现它。
注意:我不想写show="{{true}}"
答案 0 :(得分:1)
它被称为条件模板。
以下是文档: https://www.polymer-project.org/docs/polymer/template.html#if
以下是一些如何使用它们的示例: https://github.com/Polymer/TemplateBinding/tree/master/examples/how_to