Files
Cloud-Blog/components/TopicCard.vue
nurRiyad 479603ab2f change design
Signed-off-by: nurRiyad <asadnurriyad@gmail.com>
2022-12-20 23:09:38 +06:00

21 lines
365 B
Vue

<script setup lang="ts">
const props = defineProps({
title: String,
});
const router = useRouter();
const onClick = () => {
router.push(`/tags/${props.title?.toLocaleLowerCase()}`);
};
</script>
<template>
<button
@click="onClick"
class="bg-[#a2d9ff] px-2 py-1 m-2 transition hover:scale-105 rounded-md"
>
{{ title }}
</button>
</template>