Transitioning my project from vue-strap to bootstrap-vue has hit a snag for me. I'm having difficulty migrating the panel. Here's the current vue-strap code snippet:
<div class="col-sm-3">
<panel is-open type="info">
<table slot="header"><th>Search:</th></table>
<search-form :fieldList="fieldList" :customs-max-num="customsMaxNum" :data-types="dataTypes" />
</panel>
</div>
The search-form
is a custom component of mine. It seems like I need to utilize the collapse functionality in bootstrap-vue (without collapsing) as outlined in the docs. However, no matter what code variation I attempt, it doesn't seem to work. What is the correct way to implement vue-bootstrap's panel?