Update:Create playlist items table

This commit is contained in:
advplyr
2022-11-26 17:58:52 -06:00
parent 7e171576e0
commit 623a706555
5 changed files with 529 additions and 0 deletions

View File

@ -60,6 +60,9 @@ export const getters = {
},
getCollection: state => id => {
return state.collections.find(c => c.id === id)
},
getPlaylist: state => id => {
return state.userPlaylists.find(p => p.id === id)
}
}