A Vue.js plugin to play sounds.
Easy to add sounds to your components.
npm install vue-sounds --save Or with yarn
import Vue from 'vue' import store from './store' import sounds from "vue-sounds" ; Vue . use ( sounds , store ) ; There are two methods to do that
Adding then when the user enters the website You pass them in the option parameter
Vue . use ( sounds , store , { sounds :[ { name :"" , url :"" } , .... ] } ) ; Note that name field must be unique for every audio clip.
In any components you will have access to$sounds
object:
this . $sounds . add ( "name" , "url" ) ; This will give you access to these methods:
Method Parameters Return type Description get soundName {string} Player
objectthis will search for an audio with the given name and returns a player object for that audio clip. add soundName {string} and url {string} void
it will add a new audio clip to the store. getAll no parameters Array with {name, url} objects returns all of the audio clips in the store.
Before you can play sounds you have to create aPlayer
object to do so, the plugin gives you access toget
method
this . $sounds . get ( "name" ) ; This will return a Player object that gives you access to these method:
Method Parameters Return type Description play no parameters Promise<void>
play the clip. pause no parameters Promise<void>
pause the clip. stop no parameters Promise<void>
stops the clip. volume optional vol {Number} range (0-1) number sets the volume to vol and returns it, if vol is undefined returns the current volume.
It will also throw an error if you try to get a clip that doesn't exist.