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

21 lines
416 B
JavaScript
Raw Normal View History

2024-06-15 10:13:22 +02:00
/* eslint-disable no-undef */
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();
2024-06-15 10:13:22 +02:00
window.open(
`/api/v1/${action}?exportFormat=${this.format}`,
"_blank"
);
2022-10-28 22:56:04 +02:00
},
},
2022-10-28 22:56:04 +02:00
}).mount("#exporter");