-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Closed
Description
When integrating tabs with cards I am getting an undefined error that I can't seem to debug.
I am currently importing the library at a global level in main.ts in a Vue-Cli v3+ project. I wanted to reproduce the error on CodePen for you but have little experience in there so it might take me sometime to make an exact replica. Will update the issue when it is done.
Simple Tabbing works as below:
<div class="card-header text-center">
<h3 class="card-title">
Build Your Profile
</h3>
<h5 class="description">This information will let us know more about you.</h5>
<b-tabs>
<b-tab title="Tab 1" active>
Tab Contents 1
</b-tab>
<b-tab title="Tab 2">
Tab Contents 2
</b-tab>
</b-tabs>
</div>
Wrapping this within b-card produces an error as per the image.
<div class="card-header text-center">
<h3 class="card-title">
Build Your Profile
</h3>
<h5 class="description">This information will let us know more about you.</h5>
<b-card no-body>
<b-tabs card>
<b-tab title="Tab 1" active>
Tab Contents 1
</b-tab>
<b-tab title="Tab 2">
Tab Contents 2
</b-tab>
</b-tabs>
</b-card>
</div>
Metadata
Metadata
Assignees
Labels
No labels