moved artist page to cider-artist component

This commit is contained in:
booploops 2021-12-08 01:22:17 -08:00
parent 0b5389a528
commit 60ee14c6f9
3 changed files with 67 additions and 43 deletions

View file

@ -206,7 +206,9 @@
<div id="app-content">
<!-- Artist Page -->
<transition name="wpfade">
<%- include('pages/artist') %>
<template v-if="page == 'artist-page' && artistPage.data.attributes">
<cider-artist :data="artistPage.data"></cider-artist>
</template>
</transition>
<transition name="wpfade">
<%- include('pages/webview') %>
@ -388,6 +390,9 @@
<!-- Playlists / Albums -->
<%- include('pages/cider-playlist') %>
<!-- Artist Page -->
<%- include('pages/artist') %>
<!-- Search -->
<%- include('pages/search') %>