有没有办法排除accordion-heading
自定义HTML中的某个元素,无法打开和关闭手风琴?
例如,
<accordion>
<accordion-group>
<div accordion-heading>
<span>This should close the accordion element (the default behavior)</span>
<span>This should not close it</span>
</div>
</accordion-group>
</accordion>
答案 0 :(得分:2)
我用
修复了它 <span (click)="$event.stopPropagation()">This should not close it</span>
希望有一天会帮助别人!