what attribute should I pass to keep bootstrap accordion open.
<BsAccordion as |acc|>
<acc.item @value={{1}} @title="First item">
<p>Lorem ipsum...</p>
<button {{on "click" (fn acc.change 2)}}>
Next
</button>
</acc.item>
<acc.item @value={{2}} @title="Second item">
<p>Lorem ipsum...</p>
</acc.item>
<acc.item @value={{3}} @title="Third item">
<p>Lorem ipsum...</p>
</acc.item>
</BsAccordion>
<BsAccordion>component provided by Ember Bootstrap has a@selectedargument. TheAccordionItem, which@valueargument matches the@selectedargument, will be open.The example given above will show the item with title "Second item" as open.
Please note that this does not prevent the user from changing the currently open item. Doing so could be achieved by resetting
@selectedin the@onChangeevent.