change all router link to= props into object based references, fix unfinished sceneIndex var refactor, separate quoteList href/hover highlights

This commit is contained in:
Xevion
2020-09-05 20:23:05 -05:00
parent b5a3499ef1
commit 62f4019666
5 changed files with 101 additions and 87 deletions

View File

@@ -3,7 +3,7 @@
<b-button squared class="mx-2 my-1 character-button" size="sm"
v-for="character in characters" :key="character.name" :id="`character-${character.id}`"
:title="`${character.appearances} Quote${character.appearances > 1 ? 's' : ''}`"
:to="`/character/${character.id}`"
:to="{ name: 'Character', params: { character: character.id } }"
>
{{ character.name }}
<b-badge class="ml-1">{{ character.appearances}}</b-badge>