chore: rename tabs, declare routes, use icons for tabs; layout updates

This commit is contained in:
pskfyi 2022-01-08 15:42:22 -08:00 committed by pskfyi
commit 484f773e8a
3 changed files with 29 additions and 27 deletions

View file

@ -4,10 +4,12 @@
:class="[colorClasses, index < 5 && 'mr-px']"
@click="$store.commit('setActiveTab', index)"
>
<template v-if="!tabData.locked">{{ tabData.label }}</template>
<template v-if="tabData.locked"
><i class="fa fa-lock" aria-hidden="true"></i
></template>
<template v-if="!tabData.locked">
<span :class="tabData.label" />
</template>
<template v-if="tabData.locked">
<span class="fas fa-lock" />
</template>
</div>
</template>