public/components/Tag.vue

20 lines
420 B
Vue
Raw Normal View History

2022-08-08 18:41:29 -04:00
<script setup lang="ts">
2022-08-10 16:31:25 -04:00
const { dest, highlight = false } = defineProps<{
dest: string;
highlight?: boolean;
}>();
2022-08-08 18:41:29 -04:00
</script>
<template>
2022-08-08 18:41:29 -04:00
<a :href="dest">
<div
2022-08-10 16:31:25 -04:00
:class="[
'inline-block text-xs rounded-full py-1 px-2 mt-1 mr-1 bg-gray-300 dark:bg-gray-500 transition',
{ 'bg-yellow-200 dark:bg-yellow-700 shadow-lg': highlight },
]"
2022-08-08 18:41:29 -04:00
>
<slot />
</div>
</a>
</template>