Skip to content

Instantly share code, notes, and snippets.

View katerlouis's full-sized avatar

René Eschke katerlouis

View GitHub Profile
@katerlouis
katerlouis / gist:e57774ace94d03a92608618fb4040f17
Last active August 28, 2019 20:11
vue tabs infinite loop problem
<template>
<div class="cfg-tabs">
<div class="cfg-tabs-links">
<button :ref="'link'+i" class="cfg-tabs-link" @click="selectTab($event, tab)" v-for="(tab, i) in tabs" :key="i">
{{ tab.title }}
</button>
<div class="cfg-tabs-active-indicator" :style="activeIndicatorStyles"></div>
</div>
<div class="cfg-tab-content">
<slot></slot>