chore: rename tabs, declare routes, use icons for tabs; layout updates
This commit is contained in:
parent
f5d689117a
commit
484f773e8a
3 changed files with 29 additions and 27 deletions
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
Reference in a new issue