You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
And the active tab doesn't update when the activeTab variable updates via user input. Looking at the source code, I can see why - the active variable is only used onMount:
onMount(() => {
if (active) setActiveTab(tabId);
});
All three components do similar things (show one at a time out of many), but each have different approaches to controlling this:
Carousel uses
activeIndex
Accordion uses
active
on AccordionItemTabContent requires
tabId
on TabPaneAccordion & TabContent also don't let you control externally..
The text was updated successfully, but these errors were encountered: