Add base file for card types.
This commit is contained in:
parent
546a576147
commit
523e11b7ba
3 changed files with 51 additions and 0 deletions
17
src/components/cards/Artist.vue
Normal file
17
src/components/cards/Artist.vue
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
<template>
|
||||
<div class="card"></div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: `ArtistCard`,
|
||||
components: {},
|
||||
data() { return {};},
|
||||
computed: {},
|
||||
methods: {}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
|
||||
</style>
|
||||
17
src/components/cards/Track.vue
Normal file
17
src/components/cards/Track.vue
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
<template>
|
||||
<div class="card"></div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: `TrackCard`,
|
||||
components: {},
|
||||
data() { return {};},
|
||||
computed: {},
|
||||
methods: {}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
|
||||
</style>
|
||||
17
src/components/cards/UnknownType.vue
Normal file
17
src/components/cards/UnknownType.vue
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
<template>
|
||||
<div class="card"></div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: `UnknownTypeCard`,
|
||||
components: {},
|
||||
data() { return {};},
|
||||
computed: {},
|
||||
methods: {}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
|
||||
</style>
|
||||
Loading…
Add table
Add a link
Reference in a new issue