mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-18 06:44:46 -07:00
34 lines
659 B
Vue
34 lines
659 B
Vue
<template>
|
|
<div
|
|
v-if="video.channel.id !== myChannelId"
|
|
class="channel-credit"
|
|
>
|
|
<LinkButton
|
|
:href="`https://www.youtube.com/channel/${video.channel.id}`"
|
|
|
|
target="_blank"
|
|
>Subscribe to {{ video.channel.name }}</LinkButton>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
import LinkButton from '~/components/link-button.vue'
|
|
|
|
export default {
|
|
components: {
|
|
LinkButton
|
|
},
|
|
props: {
|
|
video: {
|
|
type: Object,
|
|
required: true
|
|
}
|
|
},
|
|
data: function () {
|
|
return {
|
|
myChannelId: 'UCB3jOb5QVjX7lYecvyCoTqQ'
|
|
}
|
|
}
|
|
}
|
|
</script>
|