This commit is contained in:
2020-06-25 15:41:03 +02:00
parent 071ce40ac6
commit 67915246ba
7 changed files with 60 additions and 34 deletions
+6 -1
View File
@@ -1,6 +1,11 @@
<template>
<div class="tags">
<v-chip v-for="tag in tags" :key="tag" active color="secondary">
<v-chip
v-for="(tag, index) in tags"
:key="index"
active
color="secondary"
>
{{ tag }}
</v-chip>
</div>