我正努力让Aurelia virtual-repeat.for
与table
和tr
元素合作。以下是aurelia skeleton app修改后的用户页面的标记:
<table style="width:500px; height: 200px; overflow-y:scroll; display:block">
<tr virtual-repeat.for="user of users" style="width:500px; height: 50px">
<td>
${user.avatar_url}
</td>
</tr>
</table>
当我向下滚动桌子时,下面的项目没有渲染,我只看到空白区域。我错过了什么?
答案 0 :(得分:2)
此问题已在版本0.4.3中修复,因此所描述的方案现在正在运行