Vue Version: 3.2.37
@progress/kendo-vue-layout version: 3.5.1
When using TabStrip in Vue 3 with the Composition API and `<script setup>`, there cannot be anything inside of the TabStrip other than visible markup. If there is an HTMLnode that's a comment, or is hidden using a `v-if,`, then that part of the page will not render and throw an error.
<TabStrip v-if="ctrOrSar !== 'Loading...'" :selected="selected" @select="onSelect">
<TabStripTab title="Tab">
Not a problem
<TabStripTab v-if="false">
big problem
</TabStripTab>
<!-- <TabStripTab v-if="false" >
Also a problem
</TabStripTab> -->
</TabStrip>
This is the error received:
"`Uncaught (in promise) TypeError: children.forEach is not a function`" quoting a utils.js file line 4.
If my TabStripTabs have a v-if on them to not show if data isn't available for them, then the whole section of the page isn't useable.