feat: show tags on article preview component

This commit is contained in:
Sándor Levcsák 2020-10-23 05:08:49 +03:00
parent 65a62b6e18
commit cb1fbd81d0
1 changed files with 9 additions and 0 deletions

View File

@ -35,6 +35,15 @@
<h1>{{ article.title }}</h1>
<p>{{ article.description }}</p>
<span>Read more...</span>
<ul class="tag-list">
<li
v-for="tag in article.tagList"
:key="tag"
class="tag-default tag-pill tag-outline"
>
{{ tag }}
</li>
</ul>
</AppLink>
</div>
</template>