resolve project tabs slider issue

See https://github.com/vuetifyjs/vuetify/issues/14459
This commit is contained in:
Jake Potrebic 2021-12-19 22:10:49 -08:00
parent 175bd73579
commit f9fdece3d8
No known key found for this signature in database
GPG Key ID: ECE0B3C133C016C5

View File

@ -1,11 +1,11 @@
<template>
<v-tabs>
<v-tab v-for="tab in tabs" :key="tab.title" :exact="!!tab.exact" :to="tab.external ? '/linkout?remoteUrl=' + tab.link : tab.link" nuxt>
<v-tab v-for="tab in tabs" :key="tab.title" :exact-path="!!tab.exact" :to="tab.external ? '/linkout?remoteUrl=' + tab.link : tab.link" nuxt>
<v-icon left>
{{ tab.icon }}
</v-icon>
{{ tab.title }}
<v-icon v-if="tab.external" small class="mb-1 ml-1" color="primary"> mdi-open-in-new</v-icon>
<v-icon v-if="tab.external" small class="mb-1 ml-1" color="primary">mdi-open-in-new</v-icon>
</v-tab>
</v-tabs>
</template>