-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
custom vl tabs component met content slot #181
Comments
Volgens mij kunnen we met de laatste versie van de Voorbeeld met routing en met <vl-tabs
:key="activeDossier?.id"
:active-tab="activeTab"
:hash-change="false"
class="vl-u-flex vl-u-flex-direction-column oe-flex-1"
@tab-change="onTabChange"
>
<router-view v-slot="{ Component, route }">
<vl-tab v-for="tab in tabs" :id="tab.id" :key="tab.id" :label="tab.label" :class="tab.class">
<keep-alive>
<component :is="Component" v-if="route.name === tab.id" />
</keep-alive>
</vl-tab>
</router-view>
</vl-tabs> Route te updaten in Te bekijken of dit aan de verwachtingen voldoet en of dit ticket alsnog relevant is. |
wat doen we hier dan mee @roefem ? |
Een issue aanmaken in Plannen om dit uit te proberen? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Custom component ter vervanging van vl-tabs, maar met een slot waarin content gerenderd wordt.
Gelijkaardig aan de OeContainer, voordeel is dat vue-router child routes eenvoudiger gebruikt kunnen worden om tabs te renderen
The text was updated successfully, but these errors were encountered: