0
0
Fork 0

Lay foundations for fully implementing the info cards

This commit is contained in:
Tyler-A 2020-08-03 23:09:40 -06:00
parent 0b8f169a02
commit eebb319357
4 changed files with 84 additions and 7 deletions

View file

@ -1,11 +1,22 @@
<template>
<div class="card"></div>
<div class="card">
<div class="image"></div>
<div class="track-info"></div>
<div class="popularity bottom left corner"></div>
<div class="followers bottom right corner"></div>
</div>
</template>
<script>
export default {
name: `ArtistCard`,
components: {},
props: {
item: {
type: Object,
required: true,
}
},
data() { return {};},
computed: {},
methods: {}