我在模板中有一个简单的 dom-if:
<div>
<template is="dom-if" if="{{checkListEmpty()}}" restamp>
<paper-button raised class="init" on-tap="initialize">Initialize</paper-button>
</template>
</div>
以及显示或隐藏的功能。
checkListEmpty() {
return this.todos.length == 0;
}
它仅适用于第一次。如果this.todos.length
变为 1,则模板不会消失。当条件为假时,我该如何隐藏。