FreeTube/src/renderer/components/ft-channel-bubble/ft-channel-bubble.js

25 lines
389 B
JavaScript

import Vue from 'vue'
export default Vue.extend({
name: 'FtChannelBubble',
props: {
channelName: {
type: String,
required: true
},
channelId: {
type: String,
required: true
},
channelThumbnail: {
type: String,
required: true
}
},
methods: {
goToChannel: function () {
console.log('Go to channel')
}
}
})