有一种方法可以检查LightDOM中是否存在<content>
?我不想为此使用道具(或者我应该这样做?),我想的是:
<template is="dom-if" if="CONTENT">
<content></content>
</template>
<template is="dom-if" if="!CONTENT">
<p>PLACEHOLDER</p>
</template>
<!-- CONTENT -->
<my-element>
<div></div>
</my-element>
<!-- NO CONTENT -->
<my-element></my-element>
修改
通过切换到新的<slot>
元素来解决。