Migrate to vue3 (fix #126) #127

Merged
Xefir merged 32 commits from vue3 into main 2024-08-17 12:24:28 +00:00
Showing only changes of commit caf0bb7ec0 - Show all commits

View File

@ -38,9 +38,9 @@ export default {
}
},
computed: {
...mapState(usePlayer, ['episode']),
...mapState(usePlayer, ['episode', 'podcastUrl']),
hash() {
return toUrl(this.player.podcastUrl)
return toUrl(this.podcastUrl)
},
},
}