public/components/Tag.vue

14 lines
273 B
Vue
Raw Normal View History

2022-08-08 18:41:29 -04:00
<script setup lang="ts">
const { dest } = defineProps<{ dest: string }>();
</script>
<template>
2022-08-08 18:41:29 -04:00
<a :href="dest">
<div
2022-08-09 16:25:23 -04:00
class="inline-block text-xs rounded-full py-1 px-2 mt-1 mr-1 bg-gray-300 dark:bg-gray-500"
2022-08-08 18:41:29 -04:00
>
<slot />
</div>
</a>
</template>