Skip to content

Instantly share code, notes, and snippets.

@hamedbaftam
hamedbaftam / VerticalTabs.vue
Created April 16, 2019 19:43 — forked from jacekkarczmarczyk/VerticalTabs.vue
Vuetify vertical tabs
<template>
<div :style="containerStyle" class="vertical-tabs" :class="{'vertical-tabs--vertical-text': verticalText, 'vertical-tabs--horizontal-text': !verticalText}">
<v-tabs :value="value" @input="$emit('input', $event)" :show-arrows="verticalText" :color="color" :slider-color="sliderColor" :style="tabsStyle">
<v-tab v-for="item in items" :key="item">{{ item }}</v-tab>
</v-tabs>
</div>
</template>
<script>
export default {