1.0.6 • Published 7 years ago

vue-simple-audio v1.0.6

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

A simple music player component base on Vuejs

Effect:

npm.io

demo

How to use

  • install with npm
npm install --save vue-simple-audio
  • use it in your component
<template>
  <div id="app">
    <img src="./assets/logo.png">
    <hello></hello>
    <vue-simple-audio 
        :songs="songs" 
        width="500" 
        initial-volume="40" 
        loop auto-play
        repeat
        bg-color="#345345">
    </vue-simple-audio>
  </div>
  </div>
</template>

<script>
import VueSimpleAudio from 'vue-simple-audio'

export default {
  name: 'app',
  components: {
    'vue-simple-audio':VueSimpleAudio
  },
  data(){
    return {
      songs: [{
        "url": "http://fs.open.kugou.com/7840167216f9b80284d2bb2a9bd9554b/58ac0322/G076/M0A/0C/1D/7IYBAFgu5wmAOS2gAEuViOk9tuk748.mp3",
        "songname": "林俊杰-你的唯一"
      }, {
        "url": "http://fs.open.kugou.com/aecae9884f5c9ca2063864958ddb799e/58ac03ae/G008/M07/06/09/qIYBAFUK1BuAB-aSADmE5bqELvQ099.mp3",
        "songname": "Maroon-sugar"
      }]
    }
  }
}
</script>

props

paramsdescriptiondefault
songsA array of objects,it contains song's infomation,it has two property,the song's url and name--
auto-playauto play?true
repeatrepeat the list?true
looprepeat one?false
widththe player's width300
initial-volumevolume60
bg-colorthe player's colorrgb(0,0,0)
1.0.6

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago