📅  最后修改于: 2022-03-11 14:59:35.637000             🧑  作者: Mango
HTML:
TS:
public toggleAccordian( props:NgbPanelChangeEvent ): void{
props.nextState // true === panel is toggling to an open state
// false === panel is toggling to a closed state
props.panelId // the ID of the panel that was clicked
props.preventDefault(); // don't toggle the state of the selected panel
}