我正在使用vue virtual scroller在我的应用中显示表格。该组件提供了一个插槽来声明用于表的html。
<virtual-scroller class="virtual-list" :items="items" item-height="42" container-tag="table" container-class="table table-striped" content-tag="tbody">
<template slot-scope="props">
<tr :key="props.itemKey" :id="'tp-' + props.item.id">
<td>{{ props.item.name }}</td>
<td>{{ props.item.projects }}</td>
</tr>
</template>
</virtual-scroller>
我使用virtual-scroller
制作了一个组件,并且希望能够与其他表一起使用。我正在使用模板引擎来生成此表的视图,并且想将它们插入virtual-scroller
的插槽中,因此必须(<我>认为)必须将此内容插入内联模板。
我制作了一个sandbox,但无法正常工作。