2

我有一个嵌套元素,它的模板如下:

<template>
  <span>Short text</span>
  <template is="dom-if" if="[[isFullShown]]">[[full]]</template>
</template>

这有我在更改时IronResizableBehavior明确调用的。notifyResizeisFullShown

这嵌套在另一个元素中,该元素也具有IronResizableBehavior

<template>
  <nested-element isFullShown="true" full="Full text"></nested-element
</template>

这又嵌套在我的铁列表中

<iron-list>
  <template>
    <my-element></my-element>
  </template>
</iron-list>

当我开火时,我会显示隐藏的文本并调用notifyResize,如果我正在查看检查,我希望看到translate3D列表中所有项目的属性发生变化,以表明由于项目大小而正在重新布局-改变......但我没有。

我究竟做错了什么?

4

0 回答 0