0.0.6 • Published 7 months ago

superlive-client-sdk-vuejs v0.0.6

Weekly downloads
-
License
-
Repository
-
Last release
7 months ago

superlive-client-sdk-vuejs

The SuperLive Client SDK, written in Vue, helps you get started with integrating SuperLive for live streaming and live chat.

Getting Started

To get started just simple add this package into your project.

Installation

npm install superlive-client-sdk-vuejs
# or
yarn add superlive-client-sdk-vuejs

Usage

The basic usage of component.

import { createApp } from 'vue';
// 1. Import the component
import SuperLiveClientSDK from 'superlive-client-sdk-vuejs'
// 2. Import the component style 
// (Put this at the bottom to prevent styles to be overwritten by other styles)
import 'superlive-client-sdk-vuejs/style.css'

const app = createApp();

// 3. Register the component 
app.use(SuperLiveClientSDK);

Using Component

Then you can using component from SDK in the template.

<template>
    <SuperLiveClientSDK
        :production="production"
        :apiKey="apiKey"
        :hostId="hostId"
        :participantId="participantId"
    />
</template>

Props

AttributeDescriptionTypeDefault
productionWhether it is the production environment.boolean-
apiKeyThe client side SDK authentication secret key. It can be generated in the Merchant Portal.string-
hostIdThe streamer's ID which is generated during creating host via Merchant Portal or Server SDK.string-
participantIdThe viewer's ID which is generated during creating participant via Server SDK.string-