Modern Vue 3 / Nuxt 3 audio player component with playlist and waveform visualization.
vue-music-flow works with version Vue 3+ or Nuxt 3+
Recommended Node.js version is v22.x or higher
npm i vue-music-flow
npx nuxi module add nuxt-music-flow
<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>
<template>
<MusicFlow
:options="{
autoplay: true,
}"
/>
</template>
Click here to visit documentation
npm install
npm run dev
npm run build
Run Unit Tests with Vitest
npm run test:unit
Lint with ESLint
npm run lint