vue3-video-call
TypeScript icon, indicating that this package has built-in type declarations

1500.0.5 • Public • Published

A Call Library for Vue3

Vue3 Video Call

What is the purpose of this library? Nothing.

Demo

To view demo Click

Installation

You need to install vue@3 and vue3-styled-components because this package uses vue3-styled-components sorry.

npm install vue3-video-call vue3-styled-components
pnpm add vue3-video-call vue3-styled-components
yarn add vue3-video-call vue3-styled-components

Usage

Import and use the plugin.

import { createApp } from 'vue';
import { createVideoCallPlugin } from 'vue3-video-call';
import App from './App';

const app = createApp(App);
const videoCall = createVideoCallPlugin();

app.use(videoCall);
app.mount('#app');

Add VideoCallsView component to App.vue;

App.vue

<template>
   <VideoCallsView />
</template>

<script setup>
   import { VideoCallsView } from 'vue3-video-call';
</script>

Creating calls.

SomeVueFile.vue

<template>
   <button @click="startCall">Call</button>
</template>

<script setup>
   import { useVideoCall } from 'vue3-video-call';

   const { call } = useVideoCall();

   function startCall() {
      call({
         image: 'image_url',
         video: 'video_url',
         ringtone: 'ringtone_url',
         title: 'title',
         onAccept: () => {} || undefined,
         onDeny: () => {} || undefined
      });
   }
</script>

Readme

Keywords

none

Package Sidebar

Install

npm i vue3-video-call

Weekly Downloads

1

Version

1500.0.5

License

MIT

Unpacked Size

19.1 kB

Total Files

5

Last publish

Collaborators

  • kadiryazici