added custom audio player, but this code needs some more improvments

This commit is contained in:
tdv
2025-09-05 18:13:37 +03:00
parent d840664ee7
commit 0f266d45a6
4 changed files with 295 additions and 166 deletions

View File

@@ -2,5 +2,6 @@ import { createApp } from 'vue'
import './style.css'
import App from './App.vue'
import router from './router'
import { AVPlugin } from "vue-audio-visual";
createApp(App).use(router).mount('#app')
createApp(App).use(router).use(AVPlugin).mount('#app')