在自定义组件中是否可以有多个插槽?
即
<template>
<slot id="first"></slot>
<slot id="second"></slot>
</template>
最佳答案
是的,但是您应该使用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/我将很快把它添加到自定义元素文档的内容投影部分。
关于html - Aurelia:模板中有多个插槽?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/37552779/