Aurelia:模板中的多个插槽?

时间:2016-05-31 18:09:16

标签: html aurelia aurelia-templating

自定义组件中是否可以有多个插槽?

<template>
   <slot id="first"></slot> 
   <slot id="second"></slot>
</template>

1 个答案:

答案 0 :(得分:6)

是的,但您应该使用name代替id

<template>  
  <div>
    The first slot:
    <div>
      <slot name="slot1"></slot>
    </div>
    The second slot:
    <div>
      <slot name="slot2"></slot>
    </div>
  </div>
</template>  

此处已记录:http://blog.durandal.io/2016/05/23/aurelia-shadow-dom-v1-slots-prerelease/我将很快将其添加到Custom Elements文档的内容投影部分。