summaryrefslogtreecommitdiff
path: root/src/client/pages/explore.vue
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2020-10-25 01:21:41 +0900
committerGitHub <noreply@github.com>2020-10-25 01:21:41 +0900
commit254cfaea284d12f188e28f56a0cec863e3177a49 (patch)
tree5ba89f9316cf54724af75ee919ae7339edc5af0e /src/client/pages/explore.vue
parentUpdate dependencies :rocket: (diff)
downloadmisskey-254cfaea284d12f188e28f56a0cec863e3177a49.tar.gz
misskey-254cfaea284d12f188e28f56a0cec863e3177a49.tar.bz2
misskey-254cfaea284d12f188e28f56a0cec863e3177a49.zip
自前ルーティング (#6759)
* wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip
Diffstat (limited to 'src/client/pages/explore.vue')
-rw-r--r--src/client/pages/explore.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/pages/explore.vue b/src/client/pages/explore.vue
index cf191a7481..c7378e0ddc 100644
--- a/src/client/pages/explore.vue
+++ b/src/client/pages/explore.vue
@@ -38,8 +38,8 @@
<template #header><Fa :icon="faHashtag" fixed-width style="margin-right: 0.5em;"/>{{ $t('popularTags') }}</template>
<div class="vxjfqztj">
- <router-link v-for="tag in tagsLocal" :to="`/explore/tags/${tag.tag}`" :key="'local:' + tag.tag" class="local">{{ tag.tag }}</router-link>
- <router-link v-for="tag in tagsRemote" :to="`/explore/tags/${tag.tag}`" :key="'remote:' + tag.tag">{{ tag.tag }}</router-link>
+ <MkA v-for="tag in tagsLocal" :to="`/explore/tags/${tag.tag}`" :key="'local:' + tag.tag" class="local">{{ tag.tag }}</MkA>
+ <MkA v-for="tag in tagsRemote" :to="`/explore/tags/${tag.tag}`" :key="'remote:' + tag.tag">{{ tag.tag }}</MkA>
</div>
</MkFolder>