diff --git a/.vscode/settings.json b/.vscode/settings.json index 46c2fba..585215c 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -5,7 +5,7 @@ // Auto fix "editor.codeActionsOnSave": { - "source.fixAll.eslint": true, + "source.fixAll.eslint": "explicit", "source.organizeImports": "never" }, diff --git a/assets/playlist.ts b/assets/playlist.ts new file mode 100644 index 0000000..c52ed51 --- /dev/null +++ b/assets/playlist.ts @@ -0,0 +1,21 @@ +const playlist = [{ + title: 'Gone For Good [NCS Release]', + artist: 'Rival x Jim Yosef', + album: 'Gone For Good', + image: 'https://i1.sndcdn.com/artworks-NYilj4SeVtXHzrSH-fV9V5A-t500x500.jpg', + src: '/music/1.mp3', +}, +{ + title: 'Never Have I Felt This (VIP) [NCS Release]', + artist: 'Koven', + album: 'Gone For Good', + src: '/music/2.mp3', +}, +{ + title: 'RPM [NCS Release]', + artist: 'Joxion', + album: 'Gone For Good', + image: 'https://ncsmusic.s3.eu-west-1.amazonaws.com/tracks/000/001/562/325x325/rpm-1699405250-z0QO0QBzzN.jpg', + src: '/music/3.mp3', +}]; +export default playlist; diff --git a/components/common/PlayerControls.vue b/components/common/PlayerControls.vue index 6094f71..20eb4eb 100644 --- a/components/common/PlayerControls.vue +++ b/components/common/PlayerControls.vue @@ -8,7 +8,7 @@