|
|
|
|
@ -6,18 +6,9 @@
|
|
|
|
|
</div>
|
|
|
|
|
<div class="bg-ob-deep-800 px-14 py-16 rounded-2xl shadow-xl block">
|
|
|
|
|
<TagList>
|
|
|
|
|
<template v-if="tags && tags.length > 0">
|
|
|
|
|
<template v-if="tags != '' && tags.length > 0">
|
|
|
|
|
<TagItem v-for="tag in tags" :key="tag.id" :id="tag.id" :name="tag.tagName" :count="tag.count" size="xl" />
|
|
|
|
|
</template>
|
|
|
|
|
<template v-else-if="tags">
|
|
|
|
|
<ob-skeleton tag="li" :count="10" height="20px" width="3rem" />
|
|
|
|
|
</template>
|
|
|
|
|
<template v-else>
|
|
|
|
|
<div class="flex flex-row justify-center items-center">
|
|
|
|
|
<svg-icon class="stroke-ob-bright mr-2" icon-class="warning" />
|
|
|
|
|
{{ t('settings.empty-tag') }}
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
</TagList>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|