2022-10-28 22:40:02 +02:00
|
|
|
Vue.createApp({
|
|
|
|
data() {
|
|
|
|
return {
|
2022-10-28 22:56:04 +02:00
|
|
|
format: "xml",
|
|
|
|
};
|
2022-10-28 22:40:02 +02:00
|
|
|
},
|
2022-10-28 22:56:04 +02:00
|
|
|
created() {},
|
|
|
|
destroyed() {},
|
2022-10-28 22:40:02 +02:00
|
|
|
methods: {
|
|
|
|
exportCollection(event) {
|
|
|
|
event.preventDefault();
|
|
|
|
|
2022-10-28 22:56:04 +02:00
|
|
|
window.open(`/api/v1/albums?exportFormat=${this.format}`, "_blank");
|
|
|
|
},
|
2022-10-28 22:40:02 +02:00
|
|
|
},
|
2022-10-28 22:56:04 +02:00
|
|
|
}).mount("#exporter");
|