@93 - Wantlist

This commit is contained in:
Damien Broqua 2024-06-15 10:13:22 +02:00
parent bed5139a27
commit a4a3933c6d
24 changed files with 1137 additions and 70 deletions

View file

@ -1,3 +1,4 @@
/* eslint-disable no-undef */
Vue.createApp({
data() {
return {
@ -10,7 +11,10 @@ Vue.createApp({
exportCollection(event) {
event.preventDefault();
window.open(`/api/v1/albums?exportFormat=${this.format}`, "_blank");
window.open(
`/api/v1/${action}?exportFormat=${this.format}`,
"_blank"
);
},
},
}).mount("#exporter");