Overview

0.2.8 is latest version
Public
last update was 3 weeks ago

vue-music-flow

Modern Vue 3 / Nuxt 3 audio player component with playlist and waveform visualization.

Preview

Documentation

GitHub Repository

Compatibility

vue-music-flow works with version Vue 3+ or Nuxt 3+

How to install

Recommended Node.js version is v22.x or higher

Vue 3

npm i vue-music-flow

Nuxt 3

npx nuxi module add nuxt-music-flow

How to use

Vue 3

Component.vue
<template>
  <MusicFlow
    :options="{
      autoplay: true,
    }"
  />
</template>

<script setup lang="ts">
import "vue-music-flow/dist/vue-music-flow.css";
import { MusicFlow } from "vue-music-flow";
</script>

Nuxt 3

Component.vue
<template>
  <MusicFlow
    :options="{
      autoplay: true,
    }"
  />
</template>

For more advanced customization visit documentation

Click here to visit documentation


Development

npm install

Compile and Hot-Reload for Development

npm run dev

Type-Check, Compile and Minify for Production

npm run build

Run Unit Tests with Vitest

npm run test:unit

Lint with ESLint

npm run lint

Want to support my work?

Keywords

vue3 nuxt3 audio player music player playlist waveform vue-component