Remove tags, as they are too overused

This commit is contained in:
Karsa
2023-05-24 12:37:12 +02:00
parent 7f2a5f36fe
commit 909b7563c0
2 changed files with 0 additions and 13 deletions

View File

@@ -8,11 +8,6 @@ const { params } = useData()
onMounted(() => {
console.log(params, 'data')
})
const tags = computed(() => {
if (!params.tags) return []
return params.tags.join(' • ')
})
</script>
<template>

View File

@@ -15,11 +15,6 @@ const props = defineProps<{
const { go } = useRouter()
const { page } = useData()
const tags = computed(() => {
if (!props.icon) return []
return props.icon.tags.join(' • ')
})
</script>
<template>
@@ -27,9 +22,6 @@ const tags = computed(() => {
<IconDetailName class="icon-name">
{{ icon.name }}
</IconDetailName>
<p class="icon-tags">
{{ tags }}
</p>
<div class="group">
<Badge
v-for="category in icon.categories"