1.0.0 • Published 7 years ago

vue-twitch-chat v1.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

vue-twitch-chat license Gemnasium

A Vue component for embedding Twitch chat. See component for all available properties.

Install

# npm
npm install --save-dev vue-twitch-chat
# yarn
yarn add --dev vue-twitch-chat

Use (Component)

<template>
  <twitch-chat
    :channel="channel"
  ></twitch-chat>
</template>

<script>
  import VueTwitchChat from 'vue-twitch-chat';

  export default {
    // ...
    components: {
      VueTwitchChat,
    },
    data() {
      return {
        channel: 'tserkov',
      };
    },
    // ...
  };
</script>