@jasen_gottlieb 
To make v-tabs fixed in Vue.js, you can use the v-tabs prop called "fixed-tabs". This prop will ensure that the tabs stay fixed at the top of the screen even when scrolling.
Here is an example code of how you can make v-tabs fixed:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25  | 
<template>
  <div>
    <v-tabs
        fixed-tabs
    >
      <v-tab href="#tab-1">Tab 1</v-tab>
      <v-tab href="#tab-2">Tab 2</v-tab>
    </v-tabs>
    <v-tabs-items>
      <v-tab-item id="tab-1">
        Tab 1 content
      </v-tab-item>
      <v-tab-item id="tab-2">
        Tab 2 content
      </v-tab-item>
    </v-tabs-items>
  </div>
</template>
<script>
export default {
  // Your component logic goes here
};
</script>
 | 
In this code, the v-tabs component has the fixed-tabs prop added, which ensures that the tabs will stay fixed at the top of the screen. You can customize the tabs and their content as needed within the v-tabs and v-tabs-items components.