MusicTopus/javascripts/mon-compte/ma-collection/exporter.js
2024-06-15 10:13:22 +02:00

21 lines
416 B
JavaScript

/* eslint-disable no-undef */
Vue.createApp({
data() {
return {
format: "xml",
};
},
created() {},
destroyed() {},
methods: {
exportCollection(event) {
event.preventDefault();
window.open(
`/api/v1/${action}?exportFormat=${this.format}`,
"_blank"
);
},
},
}).mount("#exporter");