First release

This commit is contained in:
exttex 2020-08-28 23:06:19 +02:00
commit b94234c8e7
50 changed files with 18231 additions and 0 deletions

View file

@ -0,0 +1,35 @@
<template>
<div>
<v-card
width='225px'
height='100px'
:img='channel.image.thumb'
@click='click'
>
<v-container fill-height class='justify-center'>
<v-card-title class='font-weight-black text-truncate text-h6 pa-1'>{{channel.title}}</v-card-title>
</v-container>
</v-card>
</div>
</template>
<script>
export default {
name: 'DeezerChannel',
props: {
channel: Object
},
methods: {
click() {
console.log(this.channel.target);
this.$router.push({
path: '/page',
query: {target: this.channel.target}
});
}
}
}
</script>