Finish GenresAdminPanel
This commit is contained in:
@@ -29,7 +29,7 @@ defineProps({
|
||||
height="150"
|
||||
>
|
||||
<v-img
|
||||
:src="'http://localhost:3000/static/' + image"
|
||||
:src="image"
|
||||
aspect-ratio="1"
|
||||
max-height="200"
|
||||
cover
|
||||
|
||||
@@ -34,7 +34,7 @@ defineProps({
|
||||
<card-view-horizontal
|
||||
v-if="!loading"
|
||||
:title="band.name"
|
||||
:image="'http://localhost:3000/static/' + band.logo"
|
||||
:image="band.logo"
|
||||
@click="router.push('/bands/details/' + band.name.replaceAll(' ', '-').toLowerCase())"
|
||||
>
|
||||
<template #content>
|
||||
|
||||
@@ -22,7 +22,7 @@ defineProps({
|
||||
|
||||
<template>
|
||||
<v-img
|
||||
:src="!loading ? 'http://localhost:3000/static/' + image : ''"
|
||||
:src="!loading ? image : ''"
|
||||
height="600"
|
||||
gradient="to top, rgba(0, 0, 0, .9), rgba(255, 255, 255, 0.1)"
|
||||
cover
|
||||
@@ -40,7 +40,7 @@ defineProps({
|
||||
<v-card>
|
||||
<v-img
|
||||
v-if="logo"
|
||||
:src="'http://localhost:3000/static/' + logo"
|
||||
:src="logo"
|
||||
width="200"
|
||||
aspect-ratio="1"
|
||||
cover
|
||||
|
||||
@@ -41,7 +41,7 @@ defineProps({
|
||||
|
||||
<template>
|
||||
<card-with-left-image
|
||||
:image="'http://localhost:3000/static/' + image"
|
||||
:image="image"
|
||||
:link="false"
|
||||
color-header="primary"
|
||||
:title="band.name + ' - ' + concert.name"
|
||||
|
||||
Reference in New Issue
Block a user