Actor tiles use SPA links instead of anchors.

This commit is contained in:
ThePendulum 2020-01-31 00:03:05 +01:00
parent 64249a06ac
commit 2035b06888
1 changed files with 3 additions and 3 deletions

View File

@ -3,8 +3,8 @@
v-if="actor"
class="actor"
>
<a
:href="`/actor/${actor.slug}`"
<router-link
:to="{ name: 'actor', params: { actorSlug: actor.slug } }"
class="link"
>
<span
@ -64,7 +64,7 @@
/>
</span>
</div>
</a>
</router-link>
</div>
</template>