forked from dbroqua/MusicTopus
20 lines
416 B
JavaScript
20 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");
|