remove dead code

This commit is contained in:
Thomas Amland 2020-08-15 20:58:32 +02:00
parent 0ca10eb316
commit 137225f7a3
2 changed files with 0 additions and 33 deletions

View File

@ -1,5 +0,0 @@
<template>
<div class="about">
<h1>This is an about page</h1>
</div>
</template>

View File

@ -1,28 +0,0 @@
<template>
<div>
<div class="col" d-flex fill-height grow>
<h1>{{ track.name }}</h1>
<div>{{ track.artist }}</div>
<v-card color="blue" tile height="100%" width="100%" />
</div>
</div>
</template>
<style scoped lang="scss">
.on-hover {
opacity: 0.6;
}
.show-btns {
color: rgba(255, 255, 255, 1) !important;
}
</style>
<script lang="ts">
import Vue from 'vue'
export default Vue.extend({
props: {
album: { type: Object, required: true }
}
})
</script>