MusicTopus/javascripts/mon-compte/ma-collection/exporter.js

17 lines
337 B
JavaScript
Raw Normal View History

Vue.createApp({
data() {
return {
2022-10-28 22:56:04 +02:00
format: "xml",
};
},
2022-10-28 22:56:04 +02:00
created() {},
destroyed() {},
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:56:04 +02:00
}).mount("#exporter");