Skip to content

Commit 3cfb21f

Browse files
committed
docs(Blogs): make blog titles links
1 parent 613319c commit 3cfb21f

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

packages/docs/src/components/home/Blogs.vue

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@
2828
</v-card-subtitle>
2929

3030
<v-card-title class="text-pre-wrap pl-0 pt-0">
31-
{{ blog.title }}
31+
<router-link :to="blog.to" class="text-high-emphasis d-inline-flex">
32+
{{ blog.title }}
33+
</router-link>
3234
</v-card-title>
3335

3436
<div class="text-medium-emphasis text-subtitle-1 pl-0">
@@ -79,8 +81,10 @@
7981
<v-icon icon="mdi-calendar" size="16" /> {{ item.date }}
8082
</v-card-subtitle>
8183

82-
<v-card-title class="text-subtitle-1 pt-1">
83-
{{ item.title }}
84+
<v-card-title class="d-inline-block text-subtitle-1 pt-1">
85+
<router-link :to="item.to" class="text-high-emphasis d-inline-flex">
86+
{{ item.title }}
87+
</router-link>
8488
</v-card-title>
8589

8690
<v-card-text

0 commit comments

Comments
 (0)