我想创建一个循环遍历数组的自定义元素,并将其应用于数组中的每个项目。例如,自定义元素的视图模板将包含以下内容:
<div repeat.for="i of items">
<div with.bind="i">
<slot></slot>
</div>
</div>
当我删除repeat.for和with.bind属性时,插槽会显示一次。有没有办法让它重复列表中的每个项目?
答案 0 :(得分:6)
不,您今天无法使用repeat.for
或bind
的广告位。为此,您必须使用可更换部件。例如:
<div repeat.for="i of items">
<div with.bind="i">
<template replaceable part="content"></template>
</div>
</div>
用法:
<my-component>
<template replace-part="content">Some Content - ${somePropertyOfI}</template>
</my-component>
可运行的示例:https://gist.run/?id=29aa1c1199f080c9ba0e72845044799b