Skip to content

Commit

Permalink
fix: Fully exclude non-active tabs from DOM instead of just hiding th…
Browse files Browse the repository at this point in the history
…em (fixes #1)
  • Loading branch information
hanneskuettner committed Jun 21, 2023
1 parent 093b85e commit 1d6ea98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/group-tabs.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
>
<template v-for="(groupField, index) in groupFields" :key="groupField.field">
<tab-panel
v-show="activeIndex === index"
v-if="activeIndex === index"
:field="groupField"
:fields="fields"
:values="groupValues"
Expand Down

0 comments on commit 1d6ea98

Please sign in to comment.