A Vue component for embedding Twitch chat. See component for all available properties.
# npm
npm install --save-dev vue-twitch-chat
# yarn
yarn add --dev vue-twitch-chat
<template>
<twitch-chat
:channel="channel"
></twitch-chat>
</template>
<script>
import VueTwitchChat from 'vue-twitch-chat';
export default {
// ...
components: {
VueTwitchChat,
},
data() {
return {
channel: 'tserkov',
};
},
// ...
};
</script>