We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
CPrimaryTabs
1 parent 30e05af commit 58aa106Copy full SHA for 58aa106
src/components/CPrimaryTabs.vue
@@ -2,6 +2,7 @@
2
<!-- This wrapping div is required to prevent an endless loop when reloading the page. See #125 -->
3
<div class="w-100">
4
<v-tabs
5
+ v-bind="$attrs"
6
class="c-primary-tabs full-width"
7
:align-tabs="alignTabs"
8
:center-active="centerActive"
@@ -16,6 +17,9 @@
16
17
<script setup lang="ts">
18
import { computed } from "vue";
19
20
+// Don't apply the attributes to the root-element (div).
21
+defineOptions({ inheritAttrs: false });
22
+
23
/**
24
* This component is a wrapper for the vuetify tabs following the material design 3 specifications for primary tabs
25
*
0 commit comments