change design

Signed-off-by: nurRiyad <asadnurriyad@gmail.com>
This commit is contained in:
nurRiyad
2022-12-20 23:09:38 +06:00
parent 2edd734e94
commit 479603ab2f
15 changed files with 123 additions and 102 deletions

View File

@@ -6,7 +6,7 @@ const props = defineProps({
const router = useRouter();
const onClick = () => {
router.push(`/tags/${props.title}`);
router.push(`/tags/${props.title?.toLocaleLowerCase()}`);
};
</script>