mirror of
https://github.com/jellyfin/jellyfin-vue.git
synced 2025-01-07 14:03:22 +00:00
Merge pull request #367 from jellyfin/button-nuxt-aware
fix(card): make button nuxt-link aware
This commit is contained in:
commit
81a329af09
@ -53,7 +53,7 @@
|
||||
v-if="overlay"
|
||||
class="card-overlay d-flex justify-center align-center"
|
||||
>
|
||||
<v-btn fab color="primary" :to="`/item/${item.Id}/play`">
|
||||
<v-btn fab color="primary" nuxt :to="`/item/${item.Id}/play`">
|
||||
<v-icon size="36">mdi-play</v-icon>
|
||||
</v-btn>
|
||||
</div>
|
||||
|
@ -67,6 +67,7 @@
|
||||
min-width="8em"
|
||||
depressed
|
||||
rounded
|
||||
nuxt
|
||||
:to="`item/${item.Id}/play`"
|
||||
>{{ $t('play') }}</v-btn
|
||||
>
|
||||
@ -74,6 +75,7 @@
|
||||
min-width="12em"
|
||||
outlined
|
||||
rounded
|
||||
nuxt
|
||||
:to="`item/${item.Id}`"
|
||||
>{{ $t('viewDetails') }}</v-btn
|
||||
>
|
||||
|
@ -11,6 +11,7 @@
|
||||
:disabled="isPlayable"
|
||||
depressed
|
||||
rounded
|
||||
nuxt
|
||||
:to="`./${genre.Id}/play`"
|
||||
>{{ $t('play') }}</v-btn
|
||||
>
|
||||
@ -21,6 +22,7 @@
|
||||
:disabled="isPlayable"
|
||||
outlined
|
||||
rounded
|
||||
nuxt
|
||||
:to="`./${genre.Id}/shuffle`"
|
||||
>{{ $t('shuffleAll') }}</v-btn
|
||||
>
|
||||
|
@ -61,6 +61,7 @@
|
||||
:disabled="isPlayable"
|
||||
depressed
|
||||
rounded
|
||||
nuxt
|
||||
:to="`./${item.Id}/play`"
|
||||
>{{ $t('play') }}</v-btn
|
||||
>
|
||||
|
Loading…
Reference in New Issue
Block a user