mirror of
https://github.com/romancm/gamebrary
synced 2024-11-14 23:47:08 +00:00
Added tags to game detail modal
This commit is contained in:
parent
fddde8afe0
commit
fa6c559ddb
1 changed files with 17 additions and 1 deletions
|
@ -12,6 +12,22 @@
|
|||
<div class="game-details">
|
||||
<h2>{{ game.name }}</h2>
|
||||
<game-rating :rating="game.rating" />
|
||||
|
||||
<div class="tags" v-if="tags">
|
||||
<div
|
||||
v-for="({ games, hex }, name) in tags"
|
||||
:key="name"
|
||||
>
|
||||
<button
|
||||
v-if="games.includes(game.id)"
|
||||
class="tag small game-tag"
|
||||
:style="`background-color: ${hex}`"
|
||||
>
|
||||
{{ name }}
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<p class="game-description" v-html="game.summary" />
|
||||
<affiliate-link />
|
||||
<game-review-box />
|
||||
|
@ -55,7 +71,7 @@ export default {
|
|||
},
|
||||
|
||||
computed: {
|
||||
...mapState(['game', 'platform']),
|
||||
...mapState(['game', 'platform', 'tags']),
|
||||
...mapGetters(['darkModeEnabled']),
|
||||
|
||||
style() {
|
||||
|
|
Loading…
Reference in a new issue