6

我想创建一个自定义元素,该元素循环遍历数组并将其应用于数组中的每个项目。例如,自定义元素的视图模板将包含以下内容:

<div repeat.for="i of items">
  <div with.bind="i">
    <slot></slot>
  </div>
</div>

当我删除 repeat.for 和 with.bind 属性时,插槽显示一次。有没有办法让它对列表中的每个项目重复?

4

1 回答 1

8

不,您不能在今天repeat.forbind今天使用插槽。为此,您必须使用可更换部件。例如:

<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

于 2017-06-07T06:25:51.993 回答