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