redesign the album bio component

This commit is contained in:
geoffrey45
2022-07-10 21:51:29 +03:00
parent 4688665156
commit cdab85912f
8 changed files with 63 additions and 30 deletions
+10 -2
View File
@@ -7,14 +7,22 @@
<Content :tracks="album.tracks" />
</template>
<template #bottom>
<Bottom :artists="album.artists" :bio="album.bio" />
<Bottom
:artists="album.artists"
:bio="album.bio"
:image="album.info.image"
/>
</template>
</Page>
</template>
<script setup lang="ts">
import useAStore from "@/stores/pages/album";
import { onBeforeRouteUpdate, RouteLocationNormalized, RouteParams } from "vue-router";
import {
onBeforeRouteUpdate,
RouteLocationNormalized,
RouteParams,
} from "vue-router";
import Page from "@/layouts/HeaderContentBottom.vue";
import Bottom from "./Bottom.vue";