mirror of
https://github.com/Xevion/the-office.git
synced 2025-12-16 04:13:34 -06:00
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:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user