Use router-link instead of a to improve usability

This commit is contained in:
syuilo 2018-10-22 10:22:07 +09:00
parent b49c70e67e
commit b02274c178
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69

View file

@ -17,7 +17,7 @@
<mk-avatar class="avatar" :user="note.user"/>
%fa:retweet%
<span>{{ '%i18n:@reposted-by%'.substr(0, '%i18n:@reposted-by%'.indexOf('{')) }}</span>
<a class="name" :href="note.user | userPage" v-user-preview="note.userId">{{ note.user | userName }}</a>
<router-link class="name" :to="note.user | userPage" v-user-preview="note.userId">{{ note.user | userName }}</router-link>
<span>{{ '%i18n:@reposted-by%'.substr('%i18n:@reposted-by%'.indexOf('}') + 1) }}</span>
<mk-time :time="note.createdAt"/>
</div>