public/components/Tag.vue

20 lines
416 B
Vue
Raw Normal View History

2022-08-08 18:41:29 -04:00
<script setup lang="ts">
const props = defineProps<{
2022-08-10 16:31:25 -04:00
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="[
2023-05-24 12:15:47 -04:00
'inline-block text-xs rounded-lg py-1 px-2 mt-1 mr-1 transition border border-pink-200 dark:border-pink-900 border-2 shadow-md',
{ 'bg-pink-200 dark:bg-pink-900': highlight },
2022-08-10 16:31:25 -04:00
]"
2022-08-08 18:41:29 -04:00
>
<slot />
</div>
</a>
</template>