Skip to content
This repository has been archived by the owner on Feb 14, 2022. It is now read-only.

tserkov/vue-twitch-chat

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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>

Releases

No releases published

Packages

No packages published

Languages