自定义组件中是否可以有多个插槽?
即
<template>
<slot id="first"></slot>
<slot id="second"></slot>
</template>
答案 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文档的内容投影部分。